├── .circleci └── config.yml ├── .eslintignore ├── .eslintrc ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .ignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .slugignore ├── .vim ├── Brewfile ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE.md ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── docs_files │ │ └── Documentation_Product_Upload_May2016.pdf │ ├── download_files │ │ ├── LocalOrbit_product_upload_template.csv │ │ └── orgs.csv │ ├── fonts │ │ ├── icomoon-ultimate.eot │ │ ├── icomoon-ultimate.svg │ │ ├── icomoon-ultimate.ttf │ │ └── icomoon-ultimate.woff │ ├── images │ │ ├── .keep │ │ ├── backgrounds │ │ │ ├── Peaches.jpg │ │ │ ├── Potatoes.jpg │ │ │ ├── brown-paper.jpg │ │ │ ├── chard.jpg │ │ │ ├── cheese.jpg │ │ │ ├── cherry-tomatoes.jpg │ │ │ ├── dried-beans.jpg │ │ │ ├── greens.jpg │ │ │ ├── lentils.jpg │ │ │ ├── multicolor-tomatoes.jpg │ │ │ ├── painting.jpg │ │ │ └── tomatoes.jpg │ │ ├── bg-flag.png │ │ ├── center-rule.png │ │ ├── center-rule@2x.png │ │ ├── colorpicker │ │ │ ├── alpha.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── default-product-image.png │ │ ├── email │ │ │ └── local-orbit-logo.png │ │ ├── footer-logo.png │ │ ├── footer-logo@2x.png │ │ ├── hamburger.png │ │ ├── horizontal-rule.png │ │ ├── horizontal-rule@2x.png │ │ ├── icon-cloud.png │ │ ├── icon-gear.png │ │ ├── icon-tools.png │ │ ├── icons │ │ │ ├── black-pin.png │ │ │ ├── calendar@2x.png │ │ │ ├── check.png │ │ │ ├── circled-check.png │ │ │ ├── circled-check@2x.png │ │ │ ├── green-pin.png │ │ │ ├── red-pin.png │ │ │ └── up.png │ │ ├── light-on-light.png │ │ ├── loading-progress.gif │ │ ├── logo-farm-to-fork.png │ │ ├── logo.png │ │ ├── magnify-search.png │ │ ├── magnify-search@2x.png │ │ ├── map-spinner.gif │ │ ├── progressbar.gif │ │ ├── smiley-sm.gif │ │ ├── sort.png │ │ ├── sort@2x.png │ │ ├── table_tents_and_posters │ │ │ ├── Group.png │ │ │ ├── LO_Circle_lo.png │ │ │ ├── map.png │ │ │ ├── poster.png │ │ │ ├── poster_intro.png │ │ │ ├── poster_name.png │ │ │ ├── tabletent.png │ │ │ ├── tabletent_intro.png │ │ │ └── tabletent_name.png │ │ ├── tooltip-icon.png │ │ └── tooltip-icon@2x.png │ ├── javascripts │ │ ├── a-detect-features.js.coffee │ │ ├── application.js │ │ ├── bank_accounts.js.coffee │ │ ├── batch_consignment_receipts.js.coffee │ │ ├── batch_invoices.js.coffee │ │ ├── bootstrap-colorpicker.js │ │ ├── bootstrap_knockout_modules.js.coffee │ │ ├── cart │ │ │ ├── cart.js.coffee │ │ │ └── cart_nav_link.js.coffee │ │ ├── categories.js.coffee │ │ ├── chosen.js.coffee │ │ ├── components.js │ │ ├── consignment_receipt_preview_pdf.js.coffee │ │ ├── credits │ │ │ └── modify_credit_modal.js.jsx │ │ ├── cross_selling.js │ │ ├── dashboards.js.coffee │ │ ├── dashboards │ │ │ ├── buyer_supplier_picker.jsx │ │ │ ├── dashboard.js.jsx │ │ │ ├── dashboard_store.js │ │ │ ├── delivery_calendar_widget.js.jsx │ │ │ ├── payments_due_widget.js.jsx │ │ │ ├── payments_overdue_widget.js.jsx │ │ │ ├── pending_delivery_widget.js.jsx │ │ │ ├── pending_signups_widget.js.jsx │ │ │ ├── sales_amount_widget.js.jsx │ │ │ ├── sales_avg_amount_widget.js.jsx │ │ │ ├── sales_count_widget.js.jsx │ │ │ └── timeframe_picker.js.jsx │ │ ├── date_picker.js.coffee.erb │ │ ├── delivery_schedule.js.coffee │ │ ├── edit_table.js.coffee │ │ ├── fading.js.coffee │ │ ├── featured.js.coffee │ │ ├── fees.js.coffee.erb │ │ ├── filters.js.coffee │ │ ├── financials.js │ │ ├── fresh_sheets.js.coffee.erb │ │ ├── incrementers.js.coffee │ │ ├── inline-edit.js.coffee │ │ ├── inventory.js.coffee │ │ ├── invoice_preview_pdf.js.coffee │ │ ├── jquery-readyselector.js │ │ ├── locations.js.coffee │ │ ├── lots.js.coffee │ │ ├── map.js.coffee │ │ ├── markets.js.coffee │ │ ├── metrics.js.coffee │ │ ├── nav-admin.js.coffee │ │ ├── nav-dropdown.js.coffee │ │ ├── newsletter.js.coffee.erb │ │ ├── order_templates │ │ │ └── components │ │ │ │ ├── new_order_template.js.jsx │ │ │ │ └── order_template_index.js.jsx │ │ ├── orders.js.coffee │ │ ├── organization.js.coffee │ │ ├── overlay.js.coffee │ │ ├── packing_labels.js.coffee.erb │ │ ├── pdf_resizer.js.coffee │ │ ├── pdf_uri_poller.js.coffee │ │ ├── popup--edit.js.coffee │ │ ├── popups.js.coffee │ │ ├── pricing.js.coffee │ │ ├── print.js.coffee │ │ ├── product-units.js.coffee │ │ ├── product_catalog │ │ │ ├── components │ │ │ │ ├── mobile_product_input.js.jsx │ │ │ │ ├── mobile_product_row.js.jsx │ │ │ │ ├── mobile_product_unit_prices.js.jsx │ │ │ │ ├── product_catalog.js.jsx │ │ │ │ ├── product_category_row.js.jsx │ │ │ │ ├── product_featured_promotion.js.jsx │ │ │ │ ├── product_filter.js.jsx │ │ │ │ ├── product_lots.js.jsx │ │ │ │ ├── product_row.js.jsx │ │ │ │ ├── product_second_category_row.js.jsx │ │ │ │ ├── product_table.js.jsx │ │ │ │ ├── product_unit_prices.js.jsx │ │ │ │ └── template_picker.js.jsx │ │ │ ├── filter_store.js │ │ │ ├── mixins │ │ │ │ ├── product_input_mixin.js │ │ │ │ └── product_row_mixin.js │ │ │ └── product_store.js │ │ ├── products.js.coffee │ │ ├── registration.js.coffee │ │ ├── resolution.js.coffee │ │ ├── roll_your_own_market.js.coffee │ │ ├── scroll-indicator.js.coffee │ │ ├── select_all.js.coffee │ │ ├── shop.js.coffee │ │ ├── sniff.js.coffee │ │ ├── sticky-footer.js.coffee │ │ ├── sticky-headers.js.coffee │ │ ├── stripe.js.coffee │ │ ├── style_chooser.js.coffee │ │ ├── style_guide.js.coffee │ │ ├── subscriptions.js.coffee │ │ ├── synchronousRemote.js │ │ ├── tab-box.js.coffee │ │ ├── table_tents_and_posters.js.coffee │ │ ├── tablesorter.js.coffee │ │ ├── tabs.js.coffee │ │ ├── tokenizer.js.coffee │ │ ├── upload.js.coffee │ │ └── util.js.coffee │ └── stylesheets │ │ ├── application.css.scss │ │ ├── batch_invoices.css.scss │ │ ├── cart.css.scss │ │ ├── catalog-redesigned.css.scss │ │ ├── colorpicker.css.scss │ │ ├── dashboards.css.scss │ │ ├── divi_styles.css │ │ ├── financials.css.scss │ │ ├── forms-color.css.scss │ │ ├── forms.css.scss │ │ ├── index-cal.scss │ │ ├── invoices.css.scss │ │ ├── layout.css.scss │ │ ├── map.css.scss │ │ ├── mixins.css.scss │ │ ├── module-datepicker.css.scss │ │ ├── modules-base.css.scss │ │ ├── modules-buttons.css.scss │ │ ├── modules-cross-selling.scss │ │ ├── modules-dashboard.css.scss │ │ ├── modules-delivery-tools.css.scss │ │ ├── modules-filters.css.scss │ │ ├── modules-icons-icomoon.css.scss │ │ ├── modules-jquery-ui.css.scss │ │ ├── modules-market.css.scss │ │ ├── modules-nav.css.scss │ │ ├── modules-order.css.scss │ │ ├── modules-popovers-edit.css.scss │ │ ├── modules-products-featured.css.scss │ │ ├── modules-ryo.css.scss │ │ ├── modules-tables.css.scss │ │ ├── products_chosen_override.scss │ │ ├── states.css.scss │ │ ├── style_guide.css.scss │ │ ├── subscriptions.css.scss │ │ ├── table_tents_and_posters.css.scss │ │ ├── theme.css.scss │ │ ├── typeahead.css.scss │ │ ├── z-print.css.scss │ │ └── z-sniff.css.scss ├── concerns │ └── product_lookup.rb ├── controllers │ ├── admin │ │ ├── activities_controller.rb │ │ ├── bank_account_verifications_controller.rb │ │ ├── bank_accounts_controller.rb │ │ ├── batch_consignment_printables_controller.rb │ │ ├── categories_controller.rb │ │ ├── category_fees_controller.rb │ │ ├── consignment_inventory_controller.rb │ │ ├── consignment_partial_po_report_controller.rb │ │ ├── consignment_pick_list_controller.rb │ │ ├── consignment_qb_report_controller.rb │ │ ├── consignment_receipts_controller.rb │ │ ├── cross_selling_lists_controller.rb │ │ ├── delivery_schedules_controller.rb │ │ ├── delivery_tools_controller.rb │ │ ├── discounts_controller.rb │ │ ├── fees_controller.rb │ │ ├── financials │ │ │ ├── batch_invoices_controller.rb │ │ │ ├── invoices_controller.rb │ │ │ ├── offline_payments_controller.rb │ │ │ ├── overviews_controller.rb │ │ │ ├── payments_controller.rb │ │ │ ├── receipts_controller.rb │ │ │ ├── seller_payment_groups_controller.rb │ │ │ ├── service_payments_controller.rb │ │ │ └── vendor_payments_controller.rb │ │ ├── financials_controller.rb │ │ ├── fresh_sheets_controller.rb │ │ ├── individual_pack_lists_controller.rb │ │ ├── invoices_controller.rb │ │ ├── labels_controller.rb │ │ ├── load_list_controller.rb │ │ ├── locations_controller.rb │ │ ├── lots_controller.rb │ │ ├── market_addresses_controller.rb │ │ ├── market_cross_sells_controller.rb │ │ ├── market_managers_controller.rb │ │ ├── market_qb_profile_controller.rb │ │ ├── market_storage_locations_controller.rb │ │ ├── market_stripe_controller.rb │ │ ├── markets_controller.rb │ │ ├── metrics_controller.rb │ │ ├── newsletters_controller.rb │ │ ├── order_items_controller.rb │ │ ├── order_summaries_controller.rb │ │ ├── orders_controller.rb │ │ ├── organization_cross_sells_controller.rb │ │ ├── organization_users_controller.rb │ │ ├── organizations_controller.rb │ │ ├── pack_lists_controller.rb │ │ ├── pick_lists_controller.rb │ │ ├── prices_controller.rb │ │ ├── products_controller.rb │ │ ├── promotions_controller.rb │ │ ├── qlik_controller.rb │ │ ├── reports_controller.rb │ │ ├── roles_controller.rb │ │ ├── style_chooser_controller.rb │ │ ├── upload_controller.rb │ │ └── users_controller.rb │ ├── admin_controller.rb │ ├── api │ │ ├── base.rb │ │ ├── v1 │ │ │ ├── credits_controller.rb │ │ │ ├── dashboards_controller.rb │ │ │ ├── filters_controller.rb │ │ │ ├── order_templates_controller.rb │ │ │ ├── orders_controller.rb │ │ │ └── products_controller.rb │ │ └── v2 │ │ │ ├── base.rb │ │ │ ├── defaults.rb │ │ │ ├── orders.rb │ │ │ └── products.rb │ ├── application_controller.rb │ ├── audited_sweeper.rb │ ├── carts_controller.rb │ ├── concerns │ │ ├── .keep │ │ ├── bank_account_entity.rb │ │ ├── cross_selling_list_entity.rb │ │ ├── inventory.rb │ │ └── sticky_filters.rb │ ├── dashboards_controller.rb │ ├── deliveries │ │ └── packing_labels_controller.rb │ ├── delivery_notes_controller.rb │ ├── dev │ │ └── pdf_controller.rb │ ├── help_controller.rb │ ├── markets_controller.rb │ ├── omniauth_callbacks_controller.rb │ ├── orders_controller.rb │ ├── organizations_controller.rb │ ├── pdf_tester_controller.rb │ ├── pdf_view_controller.rb │ ├── products_controller.rb │ ├── qr_code_controller.rb │ ├── registrations_controller.rb │ ├── roll_your_own_markets_controller.rb │ ├── sellers_controller.rb │ ├── sessions │ │ ├── deliveries_controller.rb │ │ ├── organizations_controller.rb │ │ └── suppliers_controller.rb │ ├── style_guide_controller.rb │ ├── subscriptions_controller.rb │ ├── table_tents_and_posters_controller.rb │ ├── templates_controller.rb │ ├── upload_controller.rb │ └── users │ │ └── sessions_controller.rb ├── decorators │ ├── audit_decorator.rb │ ├── batch_invoice_error_decorator.rb │ ├── cart_decorator.rb │ ├── cart_item_decorator.rb │ ├── category_fee_decorator.rb │ ├── consignment_inventory_decorator.rb │ ├── consignment_transaction_decorator.rb │ ├── delivery_decorator.rb │ ├── delivery_schedule_decorator.rb │ ├── discount_decorator.rb │ ├── general_product_decorator.rb │ ├── location_decorator.rb │ ├── lot_decorator.rb │ ├── market_address_decorator.rb │ ├── market_decorator.rb │ ├── order_decorator.rb │ ├── order_item_decorator.rb │ ├── organization_decorator.rb │ ├── organization_item_decorator.rb │ ├── payment_decorator.rb │ ├── price_decorator.rb │ ├── product_decorator.rb │ ├── promotion_decorator.rb │ ├── subscription_decorator.rb │ └── user_decorator.rb ├── helpers │ ├── address_helper.rb │ ├── admin │ │ ├── bank_accounts_helper.rb │ │ ├── delivery_schedules_helper.rb │ │ ├── financials_helper.rb │ │ └── organization_helper.rb │ ├── application_helper.rb │ ├── cart_helper.rb │ ├── cross_selling_lists_helper.rb │ ├── dashboards_helper.rb │ ├── layout_helper.rb │ ├── map_helper.rb │ ├── orders_helper.rb │ ├── payment_provider_helper.rb │ ├── products_helper.rb │ ├── social_media_helper.rb │ ├── style_guide_helper.rb │ └── toggle_active_helper.rb ├── interactors │ ├── activate_organization.rb │ ├── add_credit_card_to_stripe_customer.rb │ ├── add_delivery_schedule_to_products.rb │ ├── add_items_to_order.rb │ ├── add_market_manager.rb │ ├── add_stripe_credit_card_to_entity.rb │ ├── apply_discount_to_added_order_items.rb │ ├── apply_discount_to_cart.rb │ ├── apply_discount_to_order_items.rb │ ├── attempt_purchase.rb │ ├── attempt_purchase_order_purchase.rb │ ├── charge_service_fee.rb │ ├── clear_consignment_receipt_pdf.rb │ ├── clear_invoice_pdf.rb │ ├── create_bank_account.rb │ ├── create_consignment_products.rb │ ├── create_consignment_transaction.rb │ ├── create_holdover_transaction.rb │ ├── create_invoice.rb │ ├── create_market.rb │ ├── create_market_address.rb │ ├── create_order.rb │ ├── create_organization.rb │ ├── create_product_split.rb │ ├── create_repack_transaction.rb │ ├── create_service_payment.rb │ ├── create_shrink_transaction.rb │ ├── create_stripe_customer_for_entity.rb │ ├── create_stripe_subscription_for_entity.rb │ ├── create_supplier_org_for_producer.rb │ ├── create_temporary_stripe_credit_card.rb │ ├── delete_cart.rb │ ├── delete_locations.rb │ ├── duplicate_order.rb │ ├── ensure_cart_is_not_empty.rb │ ├── export_bill_to_qb.rb │ ├── export_invoice_to_qb.rb │ ├── generate_batch_consignment_printable_pdf.rb │ ├── generate_batch_invoice_pdf.rb │ ├── generate_consignment_printable_pdf.rb │ ├── generate_invoice_pdf.rb │ ├── generate_invoice_pdf_and_send.rb │ ├── generate_table_tents_or_posters.rb │ ├── initialize_batch_consignment_printable.rb │ ├── initialize_batch_invoice.rb │ ├── invite_user_to_organization.rb │ ├── mark_order_invoiced.rb │ ├── mark_order_uninvoiced.rb │ ├── merge_order.rb │ ├── notify_organization_activated.rb │ ├── payment_made_email_confirmation.rb │ ├── payment_received_email_confirmation.rb │ ├── place_stripe_order.rb │ ├── process_consignment_printable.rb │ ├── process_order_printable.rb │ ├── process_packing_labels_printable.rb │ ├── process_payment_with_stripe.rb │ ├── record_buyer_payment.rb │ ├── record_vendor_payment.rb │ ├── register_stripe_organization.rb │ ├── register_stripe_standalone_market.rb │ ├── remove_consignment_order.rb │ ├── remove_credit.rb │ ├── remove_delivery_fee.rb │ ├── remove_organization_from_markets.rb │ ├── roll_your_own_market.rb │ ├── send_cross_sell_messages.rb │ ├── send_email_confirmation_request.rb │ ├── send_fresh_sheet.rb │ ├── send_invoice_email.rb │ ├── send_invoice_emails.rb │ ├── send_newsletter.rb │ ├── send_order_emails.rb │ ├── send_update_emails.rb │ ├── set_order_items_status.rb │ ├── store_order_fees.rb │ ├── un_holdover_transaction.rb │ ├── un_repack_transaction.rb │ ├── un_shrink_transaction.rb │ ├── un_split_product_transaction.rb │ ├── unclose_order.rb │ ├── update_consignment_transaction.rb │ ├── update_delivery_fee.rb │ ├── update_delivery_schedule.rb │ ├── update_delivery_schedule_and_current_delivery.rb │ ├── update_lots.rb │ ├── update_next_valid_delivery.rb │ ├── update_order.rb │ ├── update_order_delivery.rb │ ├── update_order_items_status.rb │ ├── update_order_with_new_items.rb │ ├── update_orders_for_items.rb │ ├── update_purchase.rb │ ├── update_quantities.rb │ └── validate_order_total.rb ├── jobs │ ├── csv_export │ │ ├── csv_import_product_export_job.rb │ │ ├── csv_order_export_job.rb │ │ ├── csv_organization_export_job.rb │ │ ├── csv_product_export_job.rb │ │ ├── csv_report_export_job.rb │ │ ├── csv_sold_items_export_job.rb │ │ └── csv_vendor_payments_export_job.rb │ ├── image_upload │ │ └── image_upload_job.rb │ └── product_upload │ │ └── product_upload_job.rb ├── mailers │ ├── .keep │ ├── base_mailer.rb │ ├── export_mailer.rb │ ├── local_orbit │ │ └── devise_mailer.rb │ ├── market_mailer.rb │ ├── order_mailer.rb │ ├── payment_mailer.rb │ ├── upload_mailer.rb │ ├── user_mailer.rb │ └── webhook_mailer.rb ├── models │ ├── .keep │ ├── audit.rb │ ├── bank_account.rb │ ├── batch_consignment_printable.rb │ ├── batch_consignment_printable_error.rb │ ├── batch_consignment_printable_order.rb │ ├── batch_invoice.rb │ ├── batch_invoice_error.rb │ ├── batch_invoice_order.rb │ ├── cart.rb │ ├── cart_item.rb │ ├── category.rb │ ├── category_fee.rb │ ├── concerns │ │ ├── .keep │ │ ├── delivery_status.rb │ │ ├── soft_delete.rb │ │ └── sortable.rb │ ├── consignment_printable.rb │ ├── consignment_product.rb │ ├── consignment_transaction.rb │ ├── credit.rb │ ├── cross_selling_list.rb │ ├── cross_selling_list_product.rb │ ├── delivery.rb │ ├── delivery_note.rb │ ├── delivery_schedule.rb │ ├── discount.rb │ ├── event.rb │ ├── external_product.rb │ ├── fresh_sheet.rb │ ├── general_product.rb │ ├── location.rb │ ├── lot.rb │ ├── managed_market.rb │ ├── market.rb │ ├── market_address.rb │ ├── market_cross_sells.rb │ ├── market_organization.rb │ ├── metric.rb │ ├── newsletter.rb │ ├── order.rb │ ├── order_item.rb │ ├── order_item_lot.rb │ ├── order_number.rb │ ├── order_payment.rb │ ├── order_printable.rb │ ├── order_template.rb │ ├── order_template_item.rb │ ├── organization.rb │ ├── packing_labels_printable.rb │ ├── payment.rb │ ├── plan.rb │ ├── price.rb │ ├── product.rb │ ├── product_delivery.rb │ ├── promotion.rb │ ├── qb_profile.rb │ ├── qb_token.rb │ ├── registration.rb │ ├── role.rb │ ├── role_action.rb │ ├── sequence.rb │ ├── storage_location.rb │ ├── subscription.rb │ ├── subscription_type.rb │ ├── twitter_user.rb │ ├── unit.rb │ ├── user.rb │ └── user_organization.rb ├── policies │ ├── about_policy.rb │ ├── admin_cross_selling_policy.rb │ ├── advanced_delivery_cycles_policy.rb │ ├── advanced_inventory_policy.rb │ ├── advanced_pricing_policy.rb │ ├── all_supplier_policy.rb │ ├── application_policy.rb │ ├── catalog_policy.rb │ ├── custom_background_policy.rb │ ├── dashboard_policy.rb │ ├── delivery_policy.rb │ ├── delivery_schedule_policy.rb │ ├── discount_code_policy.rb │ ├── dup_order_policy.rb │ ├── email_test_policy.rb │ ├── enter_receipts_policy.rb │ ├── event_policy.rb │ ├── financial_overview_policy.rb │ ├── financial_policy.rb │ ├── fresh_sheet_policy.rb │ ├── import_policy.rb │ ├── internal_financial_policy.rb │ ├── lot_policy.rb │ ├── market_address_policy.rb │ ├── market_category_fees_policy.rb │ ├── market_cross_selling_policy.rb │ ├── market_custom_branding_policy.rb │ ├── market_deliveries_policy.rb │ ├── market_deposit_accounts_policy.rb │ ├── market_fees_policy.rb │ ├── market_manager_policy.rb │ ├── market_payment_methods_policy.rb │ ├── market_policy.rb │ ├── market_profile_policy.rb │ ├── market_quickbooks_policy.rb │ ├── market_storage_locations_policy.rb │ ├── market_stripe_policy.rb │ ├── merge_order_policy.rb │ ├── metric_policy.rb │ ├── newsletter_policy.rb │ ├── order │ │ └── delivery_status_policy.rb │ ├── order_item_policy.rb │ ├── order_minimum_policy.rb │ ├── order_policy.rb │ ├── organization_cross_selling_policy.rb │ ├── organization_policy.rb │ ├── payment_history_policy.rb │ ├── product_fees_policy.rb │ ├── product_policy.rb │ ├── promotion_policy.rb │ ├── purchase_history_policy.rb │ ├── purchase_order_policy.rb │ ├── qlik_policy.rb │ ├── record_payments_policy.rb │ ├── referral_policy.rb │ ├── report_policy.rb │ ├── review_invoices_policy.rb │ ├── role_policy.rb │ ├── routing_plan_policy.rb │ ├── segmented_inventory_policy.rb │ ├── send_invoices_policy.rb │ ├── sent_email_policy.rb │ ├── taxonomy_policy.rb │ ├── template_policy.rb │ ├── unit_policy.rb │ ├── user_organization_policy.rb │ └── user_policy.rb ├── presenters │ ├── activity_search_presenter.rb │ ├── api │ │ ├── dashboard_buyer_presenter.rb │ │ ├── dashboard_market_manager_presenter.rb │ │ └── dashboard_seller_presenter.rb │ ├── buyer_order.rb │ ├── buyer_order_presenter.rb │ ├── consignment_inventory_search_presenter.rb │ ├── financial_overview.rb │ ├── financial_overview │ │ ├── buyer.rb │ │ ├── market_manager.rb │ │ └── seller.rb │ ├── load_list_presenter.rb │ ├── market_search_presenter.rb │ ├── metrics_presenter.rb │ ├── order_delivery_status_actions_presenter.rb │ ├── order_history_activity_presenter.rb │ ├── order_history_presenter.rb │ ├── order_presenter.rb │ ├── order_search_presenter.rb │ ├── order_totals.rb │ ├── orders_by_seller_presenter.rb │ ├── payment_history_presenter.rb │ ├── payment_search_presenter.rb │ ├── pick_list_presenter.rb │ ├── product_search_presenter.rb │ ├── products_for_sale.rb │ ├── report_presenter.rb │ ├── request_url_presenter.rb │ ├── seller_order.rb │ ├── seller_payment_group.rb │ └── totals_presenter.rb ├── serializers │ ├── location_serializer.rb │ ├── market_map_serializer.rb │ ├── order_serializer.rb │ └── product_serializer.rb └── views │ ├── admin │ ├── activities │ │ ├── _header.html.erb │ │ └── index.html.erb │ ├── bank_account_verifications │ │ └── show.html.erb │ ├── bank_accounts │ │ ├── _bank_account_row.html.erb │ │ ├── _card_row.html.erb │ │ ├── _header.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── batch_consignment_receipts │ │ └── show.erb │ ├── categories │ │ ├── _form.html.erb │ │ ├── _header.html.erb │ │ ├── index.csv.csvbuilder │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── category_fees │ │ ├── _fields.html.erb │ │ └── index.html.erb │ ├── consignment_inventory │ │ ├── _filters.html.erb │ │ └── index.html.erb │ ├── consignment_invoices │ │ └── show.html.erb │ ├── consignment_partial_po_report │ │ ├── _filters.html.erb │ │ └── show.html.erb │ ├── consignment_pick_lists │ │ ├── await_pdf.html.erb │ │ ├── generating.html.erb │ │ └── show.html.erb │ ├── consignment_qb_report │ │ ├── _filters.html.erb │ │ ├── show.csv.csvbuilder │ │ └── show.html.erb │ ├── consignment_receipts │ │ ├── await_pdf.html.erb │ │ ├── generating.html.erb │ │ └── show.html.erb │ ├── cross_selling_lists │ │ ├── _form.html.erb │ │ ├── _header.html.erb │ │ ├── _product.html.erb │ │ ├── _product_activation_row.html.erb │ │ ├── _product_management.html.erb │ │ ├── _product_management_row.html.erb │ │ ├── _subscribers.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── subscriptions.html.erb │ ├── delivery_schedules │ │ ├── _form.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── delivery_tools │ │ └── show.html.erb │ ├── deposit_accounts │ │ ├── _bank_account_row.html.erb │ │ ├── _card_row.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── discounts │ │ ├── _fields.html.erb │ │ ├── _header.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── fees │ │ ├── _header.html.erb │ │ └── show.html.erb │ ├── financials │ │ ├── _admin_header.html.erb │ │ ├── _header.html.erb │ │ ├── batch_invoices │ │ │ └── show.html.erb │ │ ├── invoices │ │ │ ├── _buyer_invoices.html.erb │ │ │ ├── _seller_invoices.html.erb │ │ │ ├── filters │ │ │ │ ├── _buyer.html.erb │ │ │ │ └── _seller.html.erb │ │ │ ├── index.html.erb │ │ │ └── show.html.erb │ │ ├── lo_payments │ │ │ └── index.html.erb │ │ ├── market_payments │ │ │ └── index.html.erb │ │ ├── offline_payments │ │ │ └── show.html.erb │ │ ├── overviews │ │ │ ├── _buyer.html.erb │ │ │ ├── _buyer_money_out.html.erb │ │ │ ├── _market_manager.html.erb │ │ │ ├── _money_in.html.erb │ │ │ ├── _money_out.html.erb │ │ │ ├── _seller.html.erb │ │ │ └── show.html.erb │ │ ├── payments │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.csv.csvbuilder │ │ │ └── index.html.erb │ │ ├── receipts │ │ │ ├── edit.html.erb │ │ │ └── index.html.erb │ │ ├── seller_orders │ │ │ └── _seller_order.html.erb │ │ ├── seller_payment_groups │ │ │ └── show.html.erb │ │ ├── service_payments │ │ │ └── index.html.erb │ │ ├── shared │ │ │ ├── _buyer_payment_filters.html.erb │ │ │ ├── _market_manager_payment_filters.html.erb │ │ │ ├── _payment_filters_payment_date.html.erb │ │ │ ├── _payment_filters_payment_method.html.erb │ │ │ ├── _payment_filters_search.html.erb │ │ │ └── _seller_payment_filters.html.erb │ │ └── vendor_payments │ │ │ ├── _filters.html.erb │ │ │ └── index.html.erb │ ├── fresh_sheets │ │ ├── no_products.html.erb │ │ └── show.html.erb │ ├── individual_pack_lists │ │ ├── show.html.erb │ │ └── show_pdf.html.erb │ ├── invoices │ │ ├── await_pdf.html.erb │ │ ├── generating.html.erb │ │ └── show.html.erb │ ├── labels │ │ ├── index.html.erb │ │ └── show.html.erb │ ├── load_list │ │ ├── show.csv.csvbuilder │ │ └── show.html.erb │ ├── locations │ │ ├── _fields.html.erb │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── lots │ │ └── index.html.erb │ ├── market_addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── market_cross_sells │ │ └── show.html.erb │ ├── market_managers │ │ └── index.html.erb │ ├── market_qb_profile │ │ ├── oauth_callback.html.erb │ │ └── show.html.erb │ ├── market_storage_locations │ │ ├── _form.html.erb │ │ ├── _header.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── market_stripe │ │ └── show.html.erb │ ├── markets │ │ ├── _form.html.erb │ │ ├── _header.html.erb │ │ ├── _market_matrix.html.erb │ │ ├── _payment_options.html.erb │ │ ├── index.csv.csvbuilder │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── metrics │ │ ├── _filters.html.erb │ │ ├── _header.html.erb │ │ ├── map.html.erb │ │ └── show.html.erb │ ├── newsletters │ │ ├── _form.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── order_items │ │ ├── index.csv.csvbuilder │ │ ├── index.html.erb │ │ └── show.html.erb │ ├── order_summaries │ │ └── show.html.erb │ ├── orders │ │ ├── _filters.html.erb │ │ ├── batch_printable_show.html.erb │ │ ├── generating.html.erb │ │ ├── index.csv.csvbuilder │ │ ├── index.html.erb │ │ ├── printable_show.html.erb │ │ └── show.html.erb │ ├── organization_cross_sells │ │ └── show.html.erb │ ├── organization_users │ │ ├── edit.html.erb │ │ └── index.html.erb │ ├── organizations │ │ ├── _available_inventory.html.erb │ │ ├── _delivery_schedules.html.erb │ │ ├── _filters.html.erb │ │ ├── _form.html.erb │ │ ├── _header.html.erb │ │ ├── _market_memberships.html.erb │ │ ├── _organization.html.erb │ │ ├── index.csv.csvbuilder │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── pack_lists │ │ └── show.html.erb │ ├── pick_lists │ │ ├── show.csv.csvbuilder │ │ └── show.html.erb │ ├── prices │ │ ├── _form_row.html.erb │ │ └── index.html.erb │ ├── products │ │ ├── _edit_consignment_price.html.erb │ │ ├── _edit_lot.html.erb │ │ ├── _edit_lot_advanced.html.erb │ │ ├── _edit_price.html.erb │ │ ├── _edit_price_advanced.html.erb │ │ ├── _fields.html.erb │ │ ├── _filters.html.erb │ │ ├── _header.html.erb │ │ ├── _product.html.erb │ │ ├── index.csv.csvbuilder │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── update_supplier_products.js.coffee │ ├── promotions │ │ ├── _fields.html.erb │ │ ├── _header.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── reports │ │ ├── _filters.html.erb │ │ ├── _footer.html.erb │ │ ├── _header.html.erb │ │ ├── report.html.erb │ │ └── show.csv.csvbuilder │ ├── roles │ │ ├── _form.html.erb │ │ ├── _header.html.erb │ │ ├── _role.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── style_chooser │ │ └── show.html.erb │ ├── upload │ │ ├── export_products.csv.csvbuilder │ │ ├── index.html.erb │ │ ├── newjob.html.erb │ │ ├── upload.html.erb │ │ └── upload_delayed.html.erb │ └── users │ │ ├── _form.html.erb │ │ ├── _header.html.erb │ │ ├── edit.html.erb │ │ └── index.html.erb │ ├── avery_labels │ ├── _page_break.erb │ ├── _reset_page.erb │ ├── _vertical_order_16.html.erb │ ├── _vertical_order_4.html.erb │ ├── _vertical_product_16.html.erb │ ├── _vertical_product_4.html.erb │ ├── labels_16.html.erb │ └── labels_4.html.erb │ ├── carts │ ├── _link.html.erb │ ├── _purchase_order.html.erb │ ├── _sales_order.html.erb │ ├── show.html.erb │ └── update.json.jbuilder │ ├── dashboards │ ├── _current_sales.html.erb │ ├── _pending_orders.html.erb │ ├── _products.html.erb │ ├── _upcoming_deliveries.html.erb │ ├── admin.html.erb │ ├── buyer.html.erb │ ├── coming_soon.html.erb │ ├── market_manager.html.erb │ └── seller.html.erb │ ├── deliveries │ └── packing_labels │ │ └── show.html.erb │ ├── delivery_notes │ ├── _form.html.erb │ ├── edit.html.erb │ └── new.html.erb │ ├── dev │ └── pdf │ │ └── index.html.erb │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ ├── invitations │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── invitation_instructions.html.erb │ │ ├── reset_import_password_instructions.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── registrations │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── sessions │ │ └── new.html.erb │ ├── shared │ │ └── _links.html.erb │ └── unlocks │ │ └── new.html.erb │ ├── export_mailer │ ├── export_fail.html.erb │ └── export_success.html.erb │ ├── help │ └── show.html.erb │ ├── kaminari │ └── _paginator.html.erb │ ├── layouts │ ├── application.html.erb │ ├── email.html.erb │ └── website-bridge.html.erb │ ├── market_mailer │ ├── declined_cross_selling_list.html.erb │ ├── fresh_sheet.html.erb │ ├── inactive_cross_selling_list.html.erb │ ├── newsletter.html.erb │ ├── pending_cross_selling_list.html.erb │ ├── published_cross_selling_list.html.erb │ ├── registration.html.erb │ └── revoked_cross_selling_list.html.erb │ ├── markets │ ├── _form.html.erb │ ├── _market_header.html.erb │ ├── new.html.erb │ ├── show.html.erb │ └── success.html.erb │ ├── order_mailer │ ├── _order.html.erb │ ├── _order_item.html.erb │ ├── buyer_confirmation.html.erb │ ├── invoice.html.erb │ ├── market_manager_confirmation.html.erb │ ├── order_updated.html.erb │ └── seller_confirmation.html.erb │ ├── orders │ ├── _order.html.erb │ ├── _order_item.html.erb │ ├── _purchase_order.html.erb │ ├── _sales_order.html.erb │ ├── create.html.erb │ ├── index.html.erb │ └── show.html.erb │ ├── organizations │ ├── _organization.html.erb │ └── index.html.erb │ ├── payment_mailer │ ├── payment_made.html.erb │ └── payment_received.html.erb │ ├── pdf_tester │ └── index.html.erb │ ├── pdf_view │ └── header.html.erb │ ├── products │ ├── _featured.html.erb │ ├── _selected_delivery.html.erb │ ├── _table.html.erb │ ├── _table_row.html.erb │ ├── index.html.erb │ └── show.html.erb │ ├── registrations │ ├── create.html.erb │ ├── show.html.erb │ └── terms_of_service.html.erb │ ├── sellers │ └── show.html.erb │ ├── sessions │ ├── deliveries │ │ └── new.html.erb │ ├── organizations │ │ └── new.html.erb │ └── suppliers │ │ └── new.html.erb │ ├── shared │ ├── _analytics.html.erb │ ├── _enable_javascript.html.erb │ ├── _errors.html.erb │ ├── _facebook.html.erb │ ├── _invoice.html.erb │ ├── _navigation.html.erb │ ├── _order.html.erb │ ├── _po_trans.html.erb │ ├── _print_opensans.html.erb │ ├── _print_opensans_bold.html.erb │ ├── _print_opensans_light.html.erb │ ├── _print_opensanscondensed_bold.html.erb │ ├── _print_opensanscondensed_light.html.erb │ ├── _so_trans.html.erb │ ├── _terms_of_service.html.erb │ ├── _total_sales.html.erb │ ├── _twitter.html.erb │ ├── _update_organizations.html.erb │ ├── market_closed.html.erb │ ├── organization_inactive.html.erb │ ├── select_market.html.erb │ └── update_organizations.js.coffee │ ├── style_guide │ └── show.html.erb │ ├── subscriptions │ ├── confirm_unsubscribe.html.erb │ └── unsubscribe.html.erb │ ├── table_tents_and_posters │ ├── _ad.html.erb │ ├── _poster_page.html.erb │ ├── _table_tent_page.html.erb │ ├── index.html.erb │ ├── poster.html.erb │ ├── show.html.erb │ └── table_tent.html.erb │ ├── templates │ ├── index.erb │ └── new.erb │ ├── test │ └── a_template.html.erb │ ├── upload_mailer │ ├── upload_fail.html.erb │ └── upload_success.html.erb │ ├── user_mailer │ ├── market_invitation.html.erb │ ├── market_invitation.txt.erb │ ├── market_request_confirmation.html.erb │ ├── market_welcome.html.erb │ ├── organization_activated.html.erb │ ├── organization_activated.txt.erb │ ├── organization_invitation.html.erb │ ├── organization_invitation.txt.erb │ └── user_updated.html.erb │ ├── webhook_mailer │ ├── failed_event.html.erb │ ├── failed_payment.html.erb │ └── successful_payment.html.erb │ └── zendesk_mailer │ ├── error_intervention.text.erb │ ├── failed_market_request.text.erb │ └── request_market.text.erb ├── bin ├── _guard-core ├── convert_to_lodex ├── delayed_job ├── guard ├── import_products ├── import_wrapper ├── prod ├── production ├── rails ├── rake ├── rspec ├── spring └── staging ├── coffeelint.json ├── config.ru ├── config ├── application.rb ├── application.yml.example ├── boot.rb ├── database.yml.example ├── definitions.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ ├── staging.rb │ └── test.rb ├── initializers │ ├── active_record_query_trace.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── big_decimal_inspect.rb │ ├── bullet.rb │ ├── constructor.rb │ ├── cookies_serializer.rb │ ├── delayed_job.rb │ ├── devise.rb │ ├── direct_s3_upload.rb │ ├── dragonfly.rb │ ├── figaro.rb │ ├── filter_parameter_logging.rb │ ├── geo.rb │ ├── inflections.rb │ ├── interactor_extensions.rb │ ├── kaminari_config.rb │ ├── konacha.rb │ ├── mime_types.rb │ ├── pdfkit.rb │ ├── quickbooks.rb │ ├── ransack.rb │ ├── ransack_monkey_patch.rb │ ├── recaptcha.rb │ ├── rollbar.rb │ ├── rubymine_passenger_debug.rb │ ├── schema_validation.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── stripe.rb │ └── wrap_parameters.rb ├── locales │ ├── decorators │ │ └── organization.yml │ ├── devise.en.yml │ ├── devise_invitable.en.yml │ ├── en.yml │ └── mailers │ │ └── payment_mailer.yml ├── newrelic.yml ├── passenger_nginx.erb ├── puma.rb ├── routes.rb ├── rubocop.disabled.yml └── rubocop.enabled.yml ├── db ├── migrate │ ├── 20131210171712_devise_create_users.rb │ ├── 20131211193529_create_markets.rb │ ├── 20131212154731_add_role_to_users.rb │ ├── 20131212163111_create_managed_markets.rb │ ├── 20131212200156_devise_invitable_add_to_users.rb │ ├── 20131216221432_add_name_to_users.rb │ ├── 20140120193048_create_organizations.rb │ ├── 20140120193932_create_market_organizations.rb │ ├── 20140120194044_create_user_organizations.rb │ ├── 20140128193130_create_categories.rb │ ├── 20140129163027_create_products.rb │ ├── 20140130163037_add_index_for_parent_id_on_categories.rb │ ├── 20140203160512_add_invitation_count_to_users.rb │ ├── 20140203215914_create_lots.rb │ ├── 20140207170254_add_seller_info_fields_to_product.rb │ ├── 20140207195651_create_locations.rb │ ├── 20140207212430_add_location_id_to_products.rb │ ├── 20140210211350_add_use_simple_inventory_to_product.rb │ ├── 20140211165255_add_seller_info_fields_to_organizations.rb │ ├── 20140211170048_add_default_billing_to_locations.rb │ ├── 20140213151323_add_default_shipping_to_locations.rb │ ├── 20140225155611_create_prices.rb │ ├── 20140226163733_create_market_addresses.rb │ ├── 20140228212754_create_units.rb │ ├── 20140228213942_add_unit_to_product.rb │ ├── 20140303161017_create_delivery_schedules.rb │ ├── 20140303235148_add_image_uid_to_products.rb │ ├── 20140304001830_add_logo_uid_to_markets.rb │ ├── 20140304183306_create_bank_accounts.rb │ ├── 20140304205453_add_deleted_at_to_delivery_schedules.rb │ ├── 20140306195941_add_deleted_at_to_market_addresses.rb │ ├── 20140306200857_add_deleted_at_to_locations.rb │ ├── 20140306200929_add_top_level_category_id_to_product.rb │ ├── 20140307205358_add_phone_to_market_addresses.rb │ ├── 20140308141425_create_newsletters.rb │ ├── 20140310132256_create_deliveries.rb │ ├── 20140310150009_add_photo_uid_to_organizations.rb │ ├── 20140310181604_add_deleted_at_to_product.rb │ ├── 20140311145237_create_orders.rb │ ├── 20140311150008_create_order_items.rb │ ├── 20140311203544_add_balanced_customer_uri_to_organizations.rb │ ├── 20140312191034_add_balanced_underwritten_to_organizations.rb │ ├── 20140313203515_create_carts.rb │ ├── 20140313204509_create_cart_items.rb │ ├── 20140313210550_add_balanced_verification_uri_to_bank_accounts.rb │ ├── 20140314170740_add_descriptions_to_products.rb │ ├── 20140316163044_add_tagline_and_background_to_markets.rb │ ├── 20140318205851_change_product_descriptions_to_text.rb │ ├── 20140319152429_add_verified_to_bank_accounts.rb │ ├── 20140319184312_add_facebook_and_twitter_to_organizations.rb │ ├── 20140320201239_add_balanced_customer_uri_to_markets.rb │ ├── 20140321135922_make_bank_accounts_polymorphic.rb │ ├── 20140321141806_add_balanced_underwritten_to_market.rb │ ├── 20140324174337_convert_categories_to_nested_set.rb │ ├── 20140327183414_add_phone_to_location.rb │ ├── 20140327194733_create_order_item_lots.rb │ ├── 20140327195939_index_units_on_plural.rb │ ├── 20140328190724_add_fees_to_markets.rb │ ├── 20140328201541_create_sequence.rb │ ├── 20140330235123_setup_balanced_for_existing_data.rb │ ├── 20140401150441_add_unit_to_products_without_one.rb │ ├── 20140401153649_setup_balanced_for_existing_data_again.rb │ ├── 20140401174255_rename_order_items_fee_columns.rb │ ├── 20140401175435_add_email_opt_outs_to_users.rb │ ├── 20140401185222_adjust_markets_fee_columns.rb │ ├── 20140403133450_create_product_delivery.rb │ ├── 20140403183152_add_use_all_deliveries_to_products.rb │ ├── 20140403184058_move_delivery_status_to_order_item.rb │ ├── 20140405021321_add_placed_by_to_order.rb │ ├── 20140409141511_create_payments.rb │ ├── 20140409141707_create_order_payments.rb │ ├── 20140409143854_add_po_payment_term_to_markets.rb │ ├── 20140411204604_change_not_paid_to_unpaid.rb │ ├── 20140415153352_add_month_and_year_expiration_to_bank_account.rb │ ├── 20140415154038_add_photo_uid_to_markets.rb │ ├── 20140415192310_add_display_twitter_and_facebook_to_organization.rb │ ├── 20140416160155_add_geocodable_tables.rb │ ├── 20140416161702_add_geocodes_to_existing_data.rb │ ├── 20140417131305_add_name_and_notes_to_bank_accounts.rb │ ├── 20140418140723_add_status_and_uri_to_payments.rb │ ├── 20140418160521_add_payment_options_to_market.rb │ ├── 20140418181536_add_payment_options_to_organizations.rb │ ├── 20140418185433_add_default_payment_options_to_market.rb │ ├── 20140421152156_set_default_payment_types_for_orgs.rb │ ├── 20140423192833_add_legacy_id_to_models.rb │ ├── 20140423201453_rename_markets_background.rb │ ├── 20140423201701_add_background_color_and_text_color_to_markets.rb │ ├── 20140425155057_add_delivered_on_to_order_items.rb │ ├── 20140428222528_add_show_profile_to_organizations.rb │ ├── 20140429193559_add_paid_at_to_order.rb │ ├── 20140501153849_add_legacy_id_to_rest_of_the_tables.rb │ ├── 20140501154914_add_payee_index_on_payments.rb │ ├── 20140502150234_add_allow_cross_sell_to_market.rb │ ├── 20140502163806_create_market_cross_sells.rb │ ├── 20140502185535_add_cross_sell_to_market_organization.rb │ ├── 20140502201738_add_order_id_index_to_order_items.rb │ ├── 20140502202318_add_market_id_index_to_orders.rb │ ├── 20140507152304_add_confirmable_to_devise.rb │ ├── 20140507192333_add_active_to_organization.rb │ ├── 20140507200354_add_auto_active_to_market.rb │ ├── 20140507204126_create_delayed_jobs.rb │ ├── 20140514163807_add_user_id_to_carts.rb │ ├── 20140514195658_add_quantity_delivered_to_order_item.rb │ ├── 20140520203136_correct_quantity_delivered_on_existing_records.rb │ ├── 20140521142303_add_payer_to_payment.rb │ ├── 20140521144613_add_payment_method_to_payments.rb │ ├── 20140528203252_update_canceled_quantity_delivered.rb │ ├── 20140529200719_add_refunded_amount_to_payments.rb │ ├── 20140530195231_update_percentage_delivery_fees.rb │ ├── 20140602232214_correct_seller_payment_entries.rb │ ├── 20140603142804_add_soft_delete_to_orders.rb │ ├── 20140604160724_correct_payment_records.rb │ ├── 20140605203750_add_market_id_to_payments.rb │ ├── 20140605215923_add_bank_account_id_to_payments.rb │ ├── 20140606154142_create_promotions.rb │ ├── 20140606193933_add_image_uid_to_promotion.rb │ ├── 20140609201335_fix_order_payment_method.rb │ ├── 20140610121016_add_delete_at_to_bank_accounts.rb │ ├── 20140611205429_create_plans.rb │ ├── 20140611205503_add_plan_id_to_market.rb │ ├── 20140612155142_add_closed_to_market.rb │ ├── 20140612155413_add_indexes.rb │ ├── 20140613145936_add_index_for_depth_on_categories.rb │ ├── 20140613150809_add_index_for_product_market_and_organization_on_prices.rb │ ├── 20140627171721_add_unit_description_to_products.rb │ ├── 20140628222927_add_deleted_at_to_market_organizations.rb │ ├── 20140709165608_change_cross_sell_in_market_organization.rb │ ├── 20140714193242_update_buyer_payment_payers.rb │ ├── 20140716210518_add_thumb_uid_to_products.rb │ ├── 20140717125656_remove_order_item_lots_with_zero_quantity.rb │ ├── 20140718145820_add_demo_to_market.rb │ ├── 20140723150758_create_discounts.rb │ ├── 20140724160300_add_deleted_at_to_discount.rb │ ├── 20140724165201_add_user_terms_of_service_agreement.rb │ ├── 20140725182554_add_payment_status_to_order_item.rb │ ├── 20140725191922_add_discount_id_to_carts.rb │ ├── 20140725191928_add_discount_id_to_orders.rb │ ├── 20140729103610_create_metrics.rb │ ├── 20140801175604_add_value_metrics.rb │ ├── 20140807140826_add_payer_to_discount.rb │ ├── 20140807142025_split_discount_on_order_items.rb │ ├── 20140807142504_install_audited.rb │ ├── 20140811181142_add_refunding_payment_field_to_payment.rb │ ├── 20140811204827_change_organizations_active.rb │ ├── 20140812202308_set_po_payment_term_default.rb │ ├── 20140812212855_add_second_level_category_id_to_products.rb │ ├── 20140813141908_add_enabled_to_user_organizations.rb │ ├── 20140814144651_add_needs_activated_notification_on_organization.rb │ ├── 20140814161020_add_request_uuid_to_audits.rb │ ├── 20140819162115_add_plan_fields_to_markets.rb │ ├── 20140820181046_add_masquerade_to_audits.rb │ ├── 20140822153747_add_request_uuid_to_all_audits.rb │ ├── 20140825184635_add_flags_to_plans.rb │ ├── 20140827130952_add_delivery_status_to_order.rb │ ├── 20140828145149_add_invoice_uid_to_order.rb │ ├── 20140923175626_create_subscriptions.rb │ ├── 20140926024918_convert_fresh_sheet_and_newsletter_subscriptions.rb │ ├── 20140926031324_remove_send_freshsheet_and_send_newsletter.rb │ ├── 20140930200423_add_buyer_day_to_delivery_schedules.rb │ ├── 20140930213427_add_buyer_deliver_on_to_deliveries.rb │ ├── 20141007154650_create_batch_invoices.rb │ ├── 20141007175439_create_batch_invoices_orders.rb │ ├── 20141009171523_add_store_closed_note_to_markets.rb │ ├── 20141011155616_create_batch_invoice_errors.rb │ ├── 20141016200439_change_quantity_delivered_to_decimal.rb │ ├── 20141031200548_create_order_printables.rb │ ├── 20141105143700_add_order_printables_to_plans.rb │ ├── 20141107205633_create_fresh_sheets.rb │ ├── 20141111184650_create_packing_labels_printables.rb │ ├── 20141118171231_add_packing_labels_to_plans.rb │ ├── 20141125155544_add_sellers_edit_orders_to_plans.rb │ ├── 20141128182121_add_sellers_edit_orders_boolean_to_markets.rb │ ├── 20150423194007_add_stripe_entity_references.rb │ ├── 20150424174027_add_payment_provider_id.rb │ ├── 20150428180631_set_payment_providers_to_balanced.rb │ ├── 20150504211810_add_stripe_payment_fee_to_payments.rb │ ├── 20150504211908_add_stripe_refund_id_to_payments.rb │ ├── 20150518131514_add_stripe_transfer_id_to_payments.rb │ ├── 20150528141550_add_account_role_to_bank_accounts.rb │ ├── 20150605170153_add_ip_address_tos_accepted_at.rb │ ├── 20150630140711_add_default_status_to_market_addresses.rb │ ├── 20150630154507_add_billing_statusto_market_addresses.rb │ ├── 20150702154724_add_deleted_at_to_prices.rb │ ├── 20150709182935_set_default_to_false.rb │ ├── 20150716141837_add_country_to_markets.rb │ ├── 20150717174829_add_country_to_market_addresses.rb │ ├── 20150724165635_add_code_to_products.rb │ ├── 20150728173133_remove_index_from_products_code.rb │ ├── 20150728191353_add_fee_label_to_delivery_schedules.rb │ ├── 20150728194110_add_procurement_manager_to_plans.rb │ ├── 20150728194123_add_localeyes_plan.rb │ ├── 20150728203823_add_require_purchase_orders_to_markets.rb │ ├── 20150731142946_update_order_items_quantity_to_decimal.rb │ ├── 20150731212200_create_general_products.rb │ ├── 20150803182658_add_product_to_general_product.rb │ ├── 20150804113346_create_external_products.rb │ ├── 20150805123456_add_alternative_order_flag_to_markets.rb │ ├── 20150810153907_populate_general_products_from_products.rb │ ├── 20150910170441_create_order_templates.rb │ ├── 20150910170915_create_order_template_items.rb │ ├── 20150922184345_make_audit_comment_text_type.rb │ ├── 20150924211007_unique_names_for_templates.rb │ ├── 20150925192601_create_credits.rb │ ├── 20150929150255_add_payee_to_credits.rb │ ├── 20151012154022_add_delivery_notes.rb │ ├── 20151012184836_additions_for_delivery_notes.rb │ ├── 20151026140601_fix_delivery_note_order_assoc.rb │ ├── 20151026213424_add_recoverable_flag_to_delivery_schedule.rb │ ├── 20151104165931_add_label_options_to_market.rb │ ├── 20151117133124_add_apply_to_credits.rb │ ├── 20151120151418_add_deleted_to_credits.rb │ ├── 20160118181400_add_pending_to_markets.rb │ ├── 20160122162118_add_remit_to_address.rb │ ├── 20160122190953_add_org_role_to_organizations.rb │ ├── 20160122221058_add_plan_to_organizations.rb │ ├── 20160122221318_create_role_table.rb │ ├── 20160123195225_create_role_actions_table.rb │ ├── 20160203151200_add_stripe_id_to_plans.rb │ ├── 20160205174337_add_organization_id_to_market.rb │ ├── 20160210012833_add_organization_to_payments.rb │ ├── 20160220020018_add_zpl_to_packing_labels_printables.rb │ ├── 20160227174245_add_zpl_logo_to_market.rb │ ├── 20160308193100_add_stripe_standalone_to_markets.rb │ ├── 20160308203526_alt_order_page_default.rb │ ├── 20160312030333_add_product_seller_fee_to_price.rb │ ├── 20160312214632_add_product_seller_fee_to_order_item.rb │ ├── 20160318191640_add_self_directed_creation_to_markets.rb │ ├── 20160413154926_add_number_format_to_market.rb │ ├── 20160413171556_default_number_format_zero.rb │ ├── 20160418132511_add_product_fee_to_market.rb │ ├── 20160420160440_add_subscribed_to_markets.rb │ ├── 20160505152336_add_attributes_to_organization.rb │ ├── 20160511202055_add_subscribed_to_organization.rb │ ├── 20160518144037_add_routing_plan_to_market.rb │ ├── 20160518203642_add_market_fee_pct_to_order_item.rb │ ├── 20160520023859_add_market_seller_fee_pct_to_order.rb │ ├── 20160602003115_add_market_enabled_cross_sell_to_markets.rb │ ├── 20160602172934_add_category_fee_table.rb │ ├── 20160602194339_create_cross_selling_lists.rb │ ├── 20160602205033_create_cross_selling_list_products.rb │ ├── 20160603013154_add_category_fee_to_order_item.rb │ ├── 20160607173408_fix_market_enabled_cross_sell.rb │ ├── 20160616202547_add_unique_constraint_to_cross_selling_lists.rb │ ├── 20160623013035_add_inactive_at_to_delivery_schedules.rb │ ├── 20160623224510_add_unique_constraint_to_cross_selling_list_products.rb │ ├── 20160710003544_add_add_item_pricing_to_market.rb │ ├── 20160821004510_add_minimum_order_to_delivery_schedules.rb │ ├── 20160829140640_add_segments_to_lots.rb │ ├── 20160902192604_add_url_to_product.rb │ ├── 20160908012401_add_cycles_to_delivery_schedules.rb │ ├── 20160921153210_add_index_to_products.rb │ ├── 20161006173003_add_ryo_eligible_to_plans.rb │ ├── 20161006175522_update_ryo_eligible.rb │ ├── 20161130022910_create_events.rb │ ├── 20161130171816_add_buyer_to_template.rb │ ├── 20161201021228_add_stripe_customer_id_to_events.rb │ ├── 20161205072718_add_livemode_to_events.rb │ ├── 20161205074410_remove_column_from_events.rb │ ├── 20161222052826_add_subscription_id_to_organization.rb │ ├── 20161227185228_add_payment_provider_to_organization.rb │ ├── 20161228040940_add_subscription_status_to_organization.rb │ ├── 20170112055148_add_qb_to_organizations.rb │ ├── 20170112142010_create_qb_tokens.rb │ ├── 20170112154927_add_iv_to_qb_tokens.rb │ ├── 20170112162110_add_qb_item_id_to_products.rb │ ├── 20170112193458_create_qb_profile.rb │ ├── 20170113160447_add_qb_ref_to_order.rb │ ├── 20170113181710_add_not_null_constraint_to_delivery_schedule_order_minimum.rb │ ├── 20170115053825_add_delivery_fee_id_to_qb_profie.rb │ ├── 20170119221117_add_background_img_uid_to_markets.rb │ ├── 20170127020046_add_deliver_on_to_packing_labels_printable.rb │ ├── 20170127205447_add_gc_to_products.rb │ ├── 20170128151319_add_gc_to_prices.rb │ ├── 20170128173557_create_storage_location.rb │ ├── 20170201151301_add_gc_to_order.rb │ ├── 20170202160435_add_gc_model_to_org.rb │ ├── 20170223150136_add_contact_to_organization.rb │ ├── 20170228152243_add_descriptions_to_role_actions.rb │ ├── 20170302004407_add_not_null_constraint_order_order_type.rb │ ├── 20170302235555_add_signature_to_orders.rb │ ├── 20170307220222_create_consignment_products.rb │ ├── 20170311173804_add_prices_to_cart_items.rb │ ├── 20170312205620_add_net_price_to_order_items.rb │ ├── 20170314150103_change_sales_item_to_sale_item.rb │ ├── 20170316022744_create_consignment_transactions.rb │ ├── 20170317150346_add_fields_to_consignment_transactions.rb │ ├── 20170320140708_add_parent_to_consignment_transactions.rb │ ├── 20170321035111_add_cost_to_consignment_transaction.rb │ ├── 20170323001951_add_holdover_order_to_consignment_transaction.rb │ ├── 20170324234217_add_master_to_consignment_transaction.rb │ ├── 20170325040140_add_receipt_to_orders.rb │ ├── 20170325155443_create_batch_consignment_receipts.rb │ ├── 20170325155515_create_batch_consignment_receipts_orders.rb │ ├── 20170325155536_create_batch_consignment_receipt_errors.rb │ ├── 20170328202317_add_storage_location_to_lot.rb │ ├── 20170330032708_add_child_lot_to_consignment_transactions.rb │ ├── 20170331141052_add_child_product_to_consignment_transactions.rb │ ├── 20170402230227_add_deleted_at_to_consignment_transactions.rb │ ├── 20170403185944_add_consignment_fields_to_order_template_items.rb │ ├── 20170404152807_rename_master_column.rb │ ├── 20170405195507_add_preferred_location_to_order_items.rb │ ├── 20170405214410_add_email_to_organization.rb │ ├── 20170405234633_remove_preferred_storage_location_from_order_items.rb │ ├── 20170406015106_remove_email_from_organizations.rb │ ├── 20170406020332_add_email_to_locations.rb │ ├── 20170406124215_add_notes_to_consignment_transactions.rb │ ├── 20170411214924_create_consignment_printables_table.rb │ ├── 20170412150737_rename_batch_consignment_receipt_to_batch_consignment_printable.rb │ ├── 20170412150808_rename_batch_consignment_receipt_order_to_batch_consignment_printable_order.rb │ ├── 20170412150843_rename_batch_consignment_receipt_error_to_batch_consignment_printable_error.rb │ ├── 20170417201043_add_allow_signups_to_markets.rb │ ├── 20170420143002_add_consolidated_items_to_qb_profile.rb │ ├── 20170422024211_add_thumb_uid_to_promotions.rb │ ├── 20170425154640_add_check_name_to_organizations.rb │ ├── 20170427150255_add_notes_to_organization.rb │ ├── 20170503033420_add_contact_name_to_location.rb │ ├── 20170515134243_add_journal_entries_to_qb_profile.rb │ ├── 20170515143311_add_qb_integration_type_to_markets.rb │ ├── 20170516171531_add_fee_to_prices.rb │ ├── 20170517175440_add_fee_to_cart_items.rb │ ├── 20170517180129_add_fee_to_order_items.rb │ ├── 20170530133936_add_po_lot_id_to_order_items.rb │ ├── 20170602031233_add_ct_id_to_cart.rb │ ├── 20170602031254_add_ct_id_to_order_items.rb │ ├── 20170602031633_remove_ct_id_from_cart.rb │ ├── 20170602031726_add_ct_id_to_cart_item.rb │ ├── 20171208004303_enable_pg_stat_statements.rb │ ├── 20200116192428_remove_stripe_standalone_from_markets.rb │ ├── 20200202225047_remove_alternative_order_page_from_markets.rb │ └── 20200408211228_add_inactive_message_to_market.rb ├── role_actions.csv ├── schema.rb ├── seeds.rb ├── seeds │ └── development.rb ├── taxonomy.csv ├── taxonomy_query.sql ├── taxonomy_truncated.csv └── units.csv ├── docs ├── certs │ ├── development │ │ ├── client.pem │ │ └── client_key.pem │ ├── production │ │ ├── client.pem │ │ └── client_key.pem │ └── staging │ │ ├── client.pem │ │ └── client_key.pem ├── development_process.md ├── disaster_recovery.md ├── email_templates │ ├── fresh_sheet.html │ ├── images │ │ ├── beets.jpg │ │ ├── farm-fresh-logo.png │ │ ├── grapefruit.jpg │ │ ├── local-orbit-logo.png │ │ ├── logo-allen-marketplace.png │ │ ├── logo-buy-fresh.png │ │ ├── logo-eastern-market.png │ │ ├── logo-morgans-grove.png │ │ ├── logo-rural-resources.png │ │ ├── oranges.jpg │ │ ├── potatoes.jpg │ │ └── strawberry.jpg │ ├── lo-email-buyer-welcome-activated.html │ ├── lo-email-buyer-welcome.html │ ├── lo-email-email-changed.html │ ├── lo-email-email-new-product.html │ ├── lo-email-email-reset-password.html │ ├── lo-email-freshsheet.html │ ├── lo-email-item-cancelation.html │ ├── lo-email-logo-alt-1.html │ ├── lo-email-logo-alt-2.html │ ├── lo-email-logo-alt-3.html │ ├── lo-email-logo-alt-4.html │ ├── lo-email-logo-alt-5.html │ ├── lo-email-manual-review-notification.html │ ├── lo-email-mm-notification-alt.html │ ├── lo-email-mm-notification.html │ ├── lo-email-new-invoice.html │ ├── lo-email-new-market-notification.html │ ├── lo-email-new-registrant-alt.html │ ├── lo-email-new-registrant-auto-activate.html │ ├── lo-email-new-registrant.html │ ├── lo-email-order-seller.html │ ├── lo-email-order.html │ ├── lo-email-org-account-activated.html │ ├── lo-email-org-account-not-verified.html │ ├── lo-email-payment-made.html │ ├── lo-email-payment-received.html │ ├── lo-email-registration.html │ ├── lo-email-seller-pre-delivery.html │ ├── lo-email-seller-welcome-activated.html │ ├── lo-email-seller-welcome.html │ ├── lo-email-verify-reminder.html │ └── wrapper.html ├── letsencrypt_manual_wildcard.md ├── models.svg ├── models_brief.svg ├── rubycritic.md └── stripe_in_development.md ├── empty ├── etl ├── order.etl ├── order_destination.rb └── order_source.rb ├── lib ├── assets │ └── .keep ├── consignment_invoices │ └── consignment_invoice_pdf_generator.rb ├── consignment_pick_lists │ └── consignment_pick_list_pdf_generator.rb ├── consignment_receipts │ └── consignment_receipt_pdf_generator.rb ├── constraints │ └── non_market_domain.rb ├── dashboards.rb ├── data_calc.rb ├── dead_code.rb ├── descriptive_error.rb ├── devise │ └── strategies │ │ └── token_auth.rb ├── dragonfly_background_resize.rb ├── error_reporting.rb ├── feature_access.rb ├── financials.rb ├── financials │ ├── bank_accounts │ │ ├── builder.rb │ │ └── finder.rb │ ├── market_payments │ │ ├── builder.rb │ │ ├── calc.rb │ │ ├── finder.rb │ │ └── schema.rb │ ├── money_helpers.rb │ ├── order_item_fee_calculator.rb │ ├── orders │ │ └── calc.rb │ ├── payment_info_converter.rb │ ├── payment_notifier.rb │ ├── pricing.rb │ └── schema.rb ├── format.rb ├── generators │ └── product_import │ │ ├── file_importer │ │ ├── USAGE │ │ ├── file_importer_generator.rb │ │ └── templates │ │ │ ├── example.rb │ │ │ └── example_spec.rb │ │ └── transform │ │ ├── USAGE │ │ ├── templates │ │ ├── example.rb │ │ └── example_spec.rb │ │ └── transform_generator.rb ├── ghostscript_wrapper.rb ├── html_template_renderer.rb ├── html_to_pdf_converter.rb ├── import_legacy_taxonomy.rb ├── import_legacy_units.rb ├── import_role_actions.rb ├── imports │ ├── product_helpers.rb │ └── serialize_products.rb ├── interactor_ext.rb ├── inventory │ ├── holdover_ops.rb │ ├── repack_ops.rb │ ├── shrink_ops.rb │ ├── split_ops.rb │ └── utils.rb ├── invoices │ └── invoice_pdf_generator.rb ├── j_signature_base30.rb ├── jobs │ └── productupload.rb ├── largest_remainder.rb ├── maps │ └── google_maps.rb ├── metrics │ ├── base.rb │ ├── market_calculations.rb │ ├── market_history.rb │ ├── order_calculations.rb │ ├── order_item_calculations.rb │ ├── organization_calculations.rb │ ├── organization_history.rb │ ├── payment_calculations.rb │ ├── price_calculations.rb │ ├── price_history.rb │ ├── product_calculations.rb │ └── product_history.rb ├── orders │ ├── delivery_status_logic.rb │ ├── invoicing.rb │ ├── order_items.rb │ ├── potential_deliveries.rb │ └── unit_price_logic.rb ├── packing_labels │ ├── generator.rb │ ├── label.rb │ ├── order_info.rb │ └── page.rb ├── packing_lists │ └── generator.rb ├── payment_provider.rb ├── payment_provider │ ├── fee_estimator.rb │ ├── handlers │ │ ├── abstract_master_handler.rb │ │ ├── async_handler.rb │ │ ├── invoice_handler.rb │ │ ├── payout_handler.rb │ │ └── plan_handler.rb │ └── stripe.rb ├── pdf_result.rb ├── product_import.rb ├── product_import │ ├── archived_importers │ │ ├── bakers_of_paris.rb │ │ ├── barons_specialty_foods.rb │ │ ├── birite.rb │ │ ├── cooks.rb │ │ └── pacific_gourmet.rb │ ├── category_map.rb │ ├── data_file_upload.rb │ ├── diagram.graffle │ ├── file_importers │ │ ├── category_mappings │ │ │ ├── bakers_specialty_foods.csv │ │ │ ├── barons_specialty_foods.csv │ │ │ ├── birite.csv │ │ │ ├── chefs_warehouse.csv │ │ │ └── pacific_gourmet.csv │ │ ├── chefs_warehouse.rb │ │ ├── lodex.rb │ │ └── standard_template.rb │ ├── formats │ │ ├── csv.rb │ │ ├── xls.rb │ │ └── xlsx.rb │ ├── framework │ │ ├── file_importer.rb │ │ ├── transform.rb │ │ └── transform_pipeline.rb │ ├── overview.key │ ├── product_loader.rb │ ├── schemas.rb │ ├── spike.rb │ └── transforms │ │ ├── alias_keys.rb │ │ ├── coerce_keys.rb │ │ ├── contrive_key.rb │ │ ├── convert_priced_by_weight_items.rb │ │ ├── convert_unit_of_measure.rb │ │ ├── dump_category.rb │ │ ├── ensure_canonical_data.rb │ │ ├── from_flat_table.rb │ │ ├── from_table_grouped_by_category.rb │ │ ├── join_keys.rb │ │ ├── look_up_category.rb │ │ ├── look_up_organization.rb │ │ ├── look_up_unit.rb │ │ ├── map_category.rb │ │ ├── move_non_canonical_fields_to_source_data.rb │ │ ├── set_keys.rb │ │ ├── set_keys_to_importer_option_values.rb │ │ ├── validate_against_schema.rb │ │ └── validate_keys_are_present.rb ├── qlik │ └── authenticate.rb ├── quickbooks │ ├── account.rb │ ├── bill.rb │ ├── customer.rb │ ├── invoice.rb │ ├── item.rb │ ├── journal_entry.rb │ ├── payment.rb │ ├── term.rb │ └── vendor.rb ├── rschema_ext │ ├── either.rb │ └── regexp.rb ├── schema_validation.rb ├── search.rb ├── search │ ├── date_format.rb │ ├── market_and_organization.rb │ ├── query_defaults.rb │ ├── seller_order_finder.rb │ └── seller_payment_group_finder.rb ├── tasks │ ├── admin.rake │ ├── console.rake │ ├── db.rake │ ├── deploy.rake │ ├── destroy.rake │ ├── export_role_actions.rake │ ├── import.rake │ ├── invalid.rake │ ├── kiba.rake │ ├── metrics.rake │ ├── production-copy.rake │ ├── renew_qb.rake │ └── stripe.rake ├── templated_pdf_generator.rb ├── terms_of_service.rb ├── user_delivery_context.rb ├── user_order_context.rb ├── user_order_item_context.rb ├── users.rb └── util │ ├── stripe_enumerator.rb │ └── trim_text.rb ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── batch_invoices.pdf ├── favicon.ico ├── market_disabled.html ├── organization_disabled.html ├── robots.txt ├── signups_disabled.html └── user_suspended.html ├── spec ├── cassettes │ ├── A_Market_Manager │ │ └── Adding_an_organization │ │ │ ├── when_the_market_manager_manages_multiple_markets │ │ │ └── creates_an_organization_with_minimum_valid_information.yml │ │ │ ├── with_minimum_valid_information │ │ │ ├── creates_the_organization.yml │ │ │ └── creates_the_organization_as_not_active.yml │ │ │ └── with_valid_information │ │ │ └── creates_the_organization.yml │ ├── Adding_a_credit_card_to_an_organization │ │ ├── as_a_buyer │ │ │ └── successfully_adding_a_credit_card.yml │ │ └── as_an_organization_member │ │ │ ├── duplicate_credit_card_gives_an_error.yml │ │ │ └── successfully_adding_a_credit_card.yml │ ├── Adding_credit_card_to_a_market │ │ └── as_a_market_manager.yml │ ├── Adding_deposit_account_to_a_market │ │ ├── as_a_market_manager.yml │ │ └── as_an_admin.yml │ ├── Admin_service_payments │ │ └── does_not_allow_a_service_payment_through_stripe_for_markets_without_a_default_card.yml │ ├── Checking_Out │ │ ├── buyer_creates_an_order │ │ │ └── permits_the_market_manager_to_add_to_the_order.yml │ │ └── buyer_fills_their_cart │ │ │ └── then_buyer_checks_out │ │ │ ├── market_enables_seller_editing │ │ │ ├── after_cutoff_passes │ │ │ │ └── seller_can_still_add_items_to_order.yml │ │ │ └── before_cutoff_passes │ │ │ │ └── seller_can_add_items_to_order.yml │ │ │ ├── market_has_seller_editing_enabled │ │ │ ├── after_cutoff_passes │ │ │ │ └── seller_can_still_add_items_to_order.yml │ │ │ └── before_cutoff_passes │ │ │ │ └── seller_can_add_items_to_order.yml │ │ │ ├── permits_the_market_manager_to_add_to_the_order.yml │ │ │ └── then_cutoff_time_passes │ │ │ └── still_permits_the_market_manager_to_add_to_the_order.yml │ ├── Checking_Out_via_Purchase_Order │ │ ├── clears_out_the_cart.yml │ │ ├── displays_copy_about_the_order.yml │ │ ├── displays_the_ordered_products.yml │ │ ├── for_delivery │ │ │ ├── displays_the_address.yml │ │ │ └── displays_the_delivery_times.yml │ │ ├── for_pickup │ │ │ ├── displays_the_address.yml │ │ │ └── displays_the_delivery_times.yml │ │ ├── reviewing_the_order_after_checkout │ │ │ ├── after_delivery │ │ │ │ └── shows_quantity_delivered_along_side_quantity_ordered.yml │ │ │ └── links_to_the_order_to_review.yml │ │ ├── sends_the_buyer_an_email_about_the_order.yml │ │ ├── sends_the_market_manager_an_email_about_the_order.yml │ │ ├── sends_the_seller_email_about_the_order.yml │ │ ├── the_market_requires_a_PO_number │ │ │ └── allows_purchases_with_a_PO_number.yml │ │ └── with_discount │ │ │ ├── over_seller_items │ │ │ └── persists_the_discount_on_the_order.yml │ │ │ └── over_the_whole_order │ │ │ ├── less_then_the_order_total │ │ │ └── persists_the_discount_on_the_order.yml │ │ │ └── more_than_order_total │ │ │ └── persists_the_discount_on_the_order.yml │ ├── Managing_Markets │ │ └── as_an_admin │ │ │ └── can_add_a_market.yml │ ├── PaymentProvider_Stripe │ │ └── _order_ids_for_market_payout_transfer │ │ │ └── returns_lo_order_ids_from_a_transaction_s_payments.yml │ ├── RollYourOwnMarket │ │ └── creates_new_ │ │ │ ├── market.yml │ │ │ ├── market_address.yml │ │ │ ├── organization.yml │ │ │ ├── plan_subscription.yml │ │ │ └── stripe_customer_for_market.yml │ ├── Stripe_invoice_events │ │ ├── invoice_payment_failed │ │ │ ├── correctly_updates_an_existing_payment_record.yml │ │ │ └── creates_a_new_payment_record_if_necessary.yml │ │ └── invoice_payment_succeeded │ │ │ ├── no_subscription │ │ │ ├── disregards_invoices_that_are_not_for_subscriptions.yml │ │ │ └── disregards_invoices_that_aren_t_for_subscriptions.yml │ │ │ └── with_subscription │ │ │ └── creates_a_new_payment_object.yml │ ├── Stripe_plan_events │ │ └── plan_created │ │ │ └── creates_a_plan.yml │ ├── Stripe_transfer_events │ │ └── creates_a_payment_and_emails_the_market_s_managers.yml │ ├── admin_manange_organization │ │ ├── create_new_organization.yml │ │ └── create_new_organization_with_multiple_markets_available.yml │ ├── invoice_payment_failed_webhook │ │ ├── correctly_updates_an_existing_payment_record.yml │ │ └── creates_a_new_payment_record_if_necessary.yml │ ├── invoice_payment_succeeded_webhook │ │ ├── creates_a_new_payment_object.yml │ │ └── disregards_invoices_that_aren_t_for_subscriptions.yml │ ├── mapbox-ann-arbor-address-geocode.yml │ ├── mapbox-calgary-address-geocode.yml │ ├── mapbox-calgary-city-geocode.yml │ ├── place-order-by-purchase-order.yml │ ├── plan_created_webhook │ │ └── creates_a_plan.yml │ ├── stripe_invoice_payment_failed_event │ │ ├── correctly_updates_an_existing_payment_record.yml │ │ └── creates_a_new_payment_record_if_necessary.yml │ ├── stripe_invoice_payment_succeeded_event │ │ ├── creates_a_new_payment_object.yml │ │ └── disregards_invoices_that_aren_t_for_subscriptions.yml │ └── transfer_paid_webhook │ │ └── creates_a_payment_and_emails_the_market_s_managers.yml ├── controllers │ ├── admin │ │ ├── delivery_schedules_controller_spec.rb │ │ ├── discounts_controller_spec.rb │ │ ├── fees_controller_spec.rb │ │ ├── financials │ │ │ ├── batch_invoices_controller_spec.rb │ │ │ ├── invoices_controller_spec.rb │ │ │ └── seller_payment_groups_controller_spec.rb │ │ ├── fresh_sheets_controller_spec.rb │ │ ├── locations_controller_spec.rb │ │ ├── lots_controller_spec.rb │ │ ├── market_managers_controller_spec.rb │ │ ├── market_stripe_controller_spec.rb │ │ ├── markets_controller_spec.rb │ │ ├── orders_controller_spec.rb │ │ ├── organizations_controller_spec.rb │ │ ├── prices_controller_spec.rb │ │ ├── products_controller_spec.rb │ │ ├── reports_controller_spec.rb │ │ └── upload_controller_spec.rb │ ├── admin_controller_spec.rb │ ├── api │ │ ├── v1 │ │ │ ├── credits_controller_spec.rb │ │ │ ├── dashboards_controller_spec.rb │ │ │ ├── filters_controller_spec.rb │ │ │ ├── order_templates_controller_spec.rb │ │ │ └── products_controller_spec.rb │ │ └── v2 │ │ │ └── products_controller_spec.rb │ ├── carts_controller_spec.rb │ ├── concerns │ │ └── sticky_filters_spec.rb │ ├── dashboards_controller_spec.rb │ ├── deliveries │ │ └── packing_labels_controller_spec.rb │ ├── help_controller_spec.rb │ ├── markets_controller_spec.rb │ ├── orders_controller_spec.rb │ ├── products_controller_spec.rb │ ├── qr_code_controller_spec.rb │ ├── sellers_controller_spec.rb │ ├── sessions │ │ ├── deliveries_controller_spec.rb │ │ └── organizations_controller_spec.rb │ ├── style_guide_controller_spec.rb │ ├── table_tents_and_posters_controller_spec.rb │ └── users │ │ └── sessions_controller_spec.rb ├── decorators │ ├── batch_invoice_error_decorator_spec.rb │ ├── delivery_decorator_spec.rb │ ├── market_decorator_spec.rb │ ├── organization_decorator_spec.rb │ ├── payment_decorator_spec.rb │ ├── product_decorator_spec.rb │ └── subscription_decorator_spec.rb ├── factories.rb ├── features │ ├── admin │ │ ├── delete_users_spec.rb │ │ ├── export_products_csv_spec.rb │ │ ├── filter_organizations_spec.rb │ │ ├── filter_products_spec.rb │ │ ├── financials │ │ │ ├── buyer_overview_spec.rb │ │ │ ├── enter_offline_payment_spec.rb │ │ │ ├── overview_spec.rb │ │ │ ├── payments_spec.rb │ │ │ └── service_payments_spec.rb │ │ ├── impersonate_a_user_spec.rb │ │ ├── manage_cross_selling_spec.rb │ │ ├── manage_discount_codes_spec.rb │ │ ├── manage_organization_spec.rb │ │ ├── managing_category_fees_spec.rb │ │ ├── managing_market_addresses_spec.rb │ │ ├── managing_market_managers_spec.rb │ │ ├── managing_markets_spec.rb │ │ ├── managing_users_spec.rb │ │ ├── product_taxonomy_spec.rb │ │ ├── reports_spec.rb │ │ ├── suspending_users_spec.rb │ │ └── viewing_user_activities_spec.rb │ ├── buying │ │ ├── add_item_to_cart_spec.rb │ │ ├── checking_out_edge_cases_spec.rb │ │ ├── checking_out_via_purchase_order_spec.rb │ │ ├── checking_out_via_stripe_spec.rb │ │ ├── closed_market_spec.rb │ │ ├── consignment │ │ │ └── add_item_to_cart_spec.rb │ │ ├── removing_items_from_cart_spec.rb │ │ ├── table_tents_and_posters_spec.rb │ │ ├── using_order_templates_spec.rb │ │ ├── view_market_info_spec.rb │ │ ├── view_orders_spec.rb │ │ ├── view_products_spec.rb │ │ ├── view_seller_profiles_spec.rb │ │ ├── viewing_cart_spec.rb │ │ ├── viewing_dashboard_spec.rb │ │ ├── viewing_empty_cart_spec.rb │ │ ├── viewing_featured_promotion_spec.rb │ │ ├── viewing_financials_spec.rb │ │ ├── viewing_invoices_spec.rb │ │ └── viewing_product_story_spec.rb │ ├── market_manager │ │ ├── close_market_spec.rb │ │ ├── dashboard_spec.rb │ │ ├── financials │ │ │ ├── enter_receipts_spec.rb │ │ │ ├── mark_invoiced_spec.rb │ │ │ ├── modifying_order_credits_spec.rb │ │ │ ├── overview_spec.rb │ │ │ ├── send_invoices_spec.rb │ │ │ └── vendor_payments_spec.rb │ │ ├── fresh_sheet_spec.rb │ │ ├── manage_cross_selling_lists_spec.rb │ │ ├── manage_cross_selling_spec.rb │ │ ├── manage_sellers_edit_orders_spec.rb │ │ ├── managing_delivery_schedules_spec.rb │ │ ├── managing_organizations_spec.rb │ │ ├── managing_promotions_spec.rb │ │ ├── managing_roles_spec.rb │ │ ├── newsletters_spec.rb │ │ ├── orders_deliveries_spec.rb │ │ ├── organization_activation_spec.rb │ │ ├── plan_limits_spec.rb │ │ ├── signing_in_spec.rb │ │ ├── view_master_pack_list_spec.rb │ │ └── view_routing_plan_spec.rb │ ├── markets │ │ ├── bank_accounts │ │ │ └── removing_spec.rb │ │ └── credit_cards │ │ │ ├── adding_spec.rb │ │ │ └── removing_spec.rb │ ├── navigating_markets_spec.rb │ ├── organization_member │ │ ├── edit_organization_spec.rb │ │ └── signing_in_spec.rb │ ├── organizations │ │ ├── bank_accounts │ │ │ └── removing_spec.rb │ │ └── credit_cards │ │ │ ├── adding_via_stripe_spec.rb │ │ │ └── removing_spec.rb │ ├── registration_spec.rb │ ├── selling │ │ ├── add_inventory_spec.rb │ │ ├── add_items_to_order_spec.rb │ │ ├── add_pricing_spec.rb │ │ ├── add_product_spec.rb │ │ ├── deleting_product_spec.rb │ │ ├── edit_inventory_spec.rb │ │ ├── edit_order_delivery_spec.rb │ │ ├── edit_order_spec.rb │ │ ├── edit_pricing_spec.rb │ │ ├── edit_product_spec.rb │ │ ├── edit_quantity_ordered_via_stripe_spec.rb │ │ ├── generate_packing_labels_spec.rb │ │ ├── remove_pricing_spec.rb │ │ ├── seller_dashboard_spec.rb │ │ ├── view_individual_pack_slips_spec.rb │ │ ├── view_load_list_spec.rb │ │ ├── view_order_summary_spec.rb │ │ ├── view_pick_list_spec.rb │ │ ├── view_upcoming_deliveries_spec.rb │ │ ├── viewing_orders_spec.rb │ │ └── viewing_products_spec.rb │ ├── token_auth_spec.rb │ ├── unsubscribing_from_fresh_sheet_and_newsletter_spec.rb │ ├── users │ │ ├── user_accepts_invite_spec.rb │ │ ├── user_edits_account_spec.rb │ │ ├── user_resets_password_spec.rb │ │ └── user_signs_in_spec.rb │ ├── viewing_invoice_spec.rb │ └── viewing_my_organizations_spec.rb ├── fixtures │ ├── test.pdf │ └── webhooks │ │ └── stripe │ │ ├── charge.failed.json │ │ ├── invoice.payment_failed.json │ │ ├── invoice.payment_succeeded.json │ │ ├── invoice.payment_succeeded.no_sub.json │ │ ├── payout.paid.json │ │ ├── payout.paid.livemode.json │ │ └── plan.created.json ├── helpers │ ├── admin │ │ └── delivery_schedules_helper_spec.rb │ ├── application_helper_spec.rb │ ├── layout_helper_spec.rb │ ├── products_helper_spec.rb │ └── style_guide_helper_spec.rb ├── interactors │ ├── add_credit_card_to_stripe_customer_spec.rb │ ├── add_delivery_schedule_to_products_spec.rb │ ├── add_items_to_order_spec.rb │ ├── add_market_manager_spec.rb │ ├── add_stripe_credit_card_to_entity_spec.rb │ ├── apply_discount_to_cart_spec.rb │ ├── apply_discount_to_order_items_spec.rb │ ├── attempt_purchase_spec.rb │ ├── create_bank_account_spec.rb │ ├── create_order_spec.rb │ ├── create_stripe_customer_for_entity_spec.rb │ ├── create_temporary_stripe_credit_card_spec.rb │ ├── delete_locations_spec.rb │ ├── generate_batch_invoice_pdf_spec.rb │ ├── generate_invoice_pdf_spec.rb │ ├── generate_table_tents_or_posters_spec.rb │ ├── initialize_batch_invoice_spec.rb │ ├── invite_user_to_organization_spec.rb │ ├── merge_order_spec.rb │ ├── process_order_printable_spec.rb │ ├── process_packing_labels_printable_spec.rb │ ├── record_buyer_payment_spec.rb │ ├── record_vendor_payment_spec.rb │ ├── remove_organization_from_markets_spec.rb │ ├── roll_your_own_market_spec.rb │ ├── send_fresh_sheet_spec.rb │ ├── send_newsletter_spec.rb │ ├── send_order_emails_spec.rb │ ├── send_update_emails_spec.rb │ ├── set_order_items_status_spec.rb │ ├── store_order_fees_spec.rb │ ├── update_delivery_schedule_and_current_delivery_spec.rb │ ├── update_order_delivery_spec.rb │ ├── update_purchase_spec.rb │ └── update_quantities_spec.rb ├── javascripts │ ├── spec_helper.js.coffee │ ├── stripe_spec.js.coffee │ └── tokenizer_spec.js.coffee ├── lib │ ├── constraints │ │ └── non_market_domain_spec.rb │ ├── data_calc_spec.rb │ ├── descriptive_error_spec.rb │ ├── feature_access_spec.rb │ ├── financials │ │ ├── bank_accounts │ │ │ ├── builder_spec.rb │ │ │ └── finder_spec.rb │ │ ├── money_helpers_spec.rb │ │ ├── order_item_fee_calculator_spec.rb │ │ ├── orders │ │ │ └── calc_spec.rb │ │ ├── payment_notifier_spec.rb │ │ └── pricing_spec.rb │ ├── ghostscript_wrapper_spec.rb │ ├── html_template_renderer_spec.rb │ ├── html_to_pdf_converter_spec.rb │ ├── largest_remainder_spec.rb │ ├── metrics │ │ ├── base_spec.rb │ │ ├── market_metrics_spec.rb │ │ ├── order_item_metrics_spec.rb │ │ ├── order_metrics_spec.rb │ │ ├── organization_metrics_spec.rb │ │ ├── payment_metrics_spec.rb │ │ ├── price_metrics_spec.rb │ │ └── product_metrics_spec.rb │ ├── orders │ │ ├── delivery_status_logic_spec.rb │ │ ├── order_items_spec.rb │ │ └── unit_price_logic_spec.rb │ ├── packing_labels │ │ ├── generator_spec.rb │ │ ├── label_spec.rb │ │ ├── order_info_spec.rb │ │ └── page_spec.rb │ ├── payment_provider │ │ ├── handlers │ │ │ ├── async_handler_spec.rb │ │ │ ├── invoice_payment_failed_spec.rb │ │ │ ├── invoice_payment_succeeded_spec.rb │ │ │ ├── payout_handler_spec.rb │ │ │ └── plan_created_spec.rb │ │ └── stripe_spec.rb │ ├── payment_provider_spec.rb │ ├── product_import │ │ ├── file_importers │ │ │ ├── lodex_spec.rb │ │ │ └── standard_template_spec.rb │ │ ├── formats │ │ │ ├── csv_spec.rb │ │ │ ├── xls_spec.rb │ │ │ └── xlsx_spec.rb │ │ ├── framework │ │ │ ├── file_importer_spec.rb │ │ │ ├── transform_pipeline_spec.rb │ │ │ └── transform_spec.rb │ │ ├── product_loader_spec.rb │ │ ├── test_data │ │ │ ├── Bi-Rite Zynga Supplier Product Listing Import Template.xlsx │ │ │ ├── admin_upload_template_bad_headers.xlsx │ │ │ ├── admin_upload_template_noPC_good.xlsx │ │ │ ├── admin_upload_template_test.xlsx │ │ │ ├── admin_upload_template_withPC_good.xlsx │ │ │ ├── bakers.xlsx │ │ │ ├── barons_specialty_foods.xls │ │ │ ├── birite.CSV │ │ │ ├── birite_utf8.CSV │ │ │ ├── chefs_warehouse.xlsx │ │ │ ├── chefs_warehouse_from_eric.csv │ │ │ ├── cooks.xlsx │ │ │ ├── empty │ │ │ ├── empty.xlsx │ │ │ ├── lodex_good_and_bad.csv │ │ │ ├── lodex_missing_headers.csv │ │ │ ├── lodex_with_extra_fields.csv │ │ │ └── pacific_gourmet.xlsx │ │ └── transforms │ │ │ ├── alias_keys_spec.rb │ │ │ ├── coerce_keys_spec.rb │ │ │ ├── contrive_key_spec.rb │ │ │ ├── convert_unit_of_measure_spec.rb │ │ │ ├── from_flat_table_spec.rb │ │ │ ├── from_table_grouped_by_category_spec.rb │ │ │ ├── join_keys_spec.rb │ │ │ ├── look_up_category_spec.rb │ │ │ ├── look_up_organization_spec.rb │ │ │ ├── look_up_unit_spec.rb │ │ │ ├── map_category_spec.rb │ │ │ └── move_non_canonical_fields_to_source_data_spec.rb │ ├── rschema_ext │ │ ├── either_spec.rb │ │ └── regexp_spec.rb │ ├── templated_pdf_generator_spec.rb │ ├── terms_of_service_spec.rb │ ├── user_delivery_context_spec.rb │ ├── user_order_context_spec.rb │ └── user_order_item_context_spec.rb ├── mailers │ ├── devise_mailer_spec.rb │ ├── market_mailer_spec.rb │ ├── order_mailer_spec.rb │ ├── payment_mailer_spec.rb │ ├── previews │ │ ├── application_preview.rb │ │ └── payment_preview.rb │ ├── user_mailer_spec.rb │ └── webhook_mailer_spec.rb ├── models │ ├── bank_account_spec.rb │ ├── batch_invoice_error_spec.rb │ ├── batch_invoice_spec.rb │ ├── cart_item_spec.rb │ ├── cart_spec.rb │ ├── category_spec.rb │ ├── credit_spec.rb │ ├── cross_selling_list_product_spec.rb │ ├── cross_selling_list_spec.rb │ ├── delivery_schedule_spec.rb │ ├── discount_spec.rb │ ├── event_spec.rb │ ├── fresh_sheet_spec.rb │ ├── general_product_spec.rb │ ├── location_spec.rb │ ├── lot_spec.rb │ ├── market_address_spec.rb │ ├── market_organization_spec.rb │ ├── market_spec.rb │ ├── newsletter_spec.rb │ ├── order_item_spec.rb │ ├── order_number_spec.rb │ ├── order_printable_spec.rb │ ├── order_spec.rb │ ├── order_template_item_spec.rb │ ├── order_template_spec.rb │ ├── organization_spec.rb │ ├── packing_labels_printable_spec.rb │ ├── payment_spec.rb │ ├── price_spec.rb │ ├── product_spec.rb │ ├── promotion_spec.rb │ ├── registration_spec.rb │ ├── sequence_spec.rb │ ├── subscription_spec.rb │ ├── subscription_type_spec.rb │ ├── twitter_user_spec.rb │ ├── unit_spec.rb │ └── user_spec.rb ├── policies │ ├── market_cross_sell.rb │ └── order │ │ └── delivery_status_policy_spec.rb ├── presenters │ ├── order_delivery_status_actions_presenter_spec.rb │ ├── request_url_presenter_spec.rb │ ├── seller_order_spec.rb │ └── seller_payment_group_spec.rb ├── requests │ └── webhooks │ │ └── stripe │ │ ├── invoice_events_spec.rb │ │ ├── payout_events_spec.rb │ │ └── plan_events_spec.rb ├── spec_helper.rb └── support │ ├── audited.rb │ ├── authentication_helpers.rb │ ├── be_about_matcher.rb │ ├── capybara.rb │ ├── chosen_js_helpers.rb │ ├── database_cleaner.rb │ ├── delivery_helpers.rb │ ├── devise.rb │ ├── domino.rb │ ├── dropdown_helpers.rb │ ├── factory_bot.rb │ ├── financial_overview_helpers.rb │ ├── generate.rb │ ├── geocoder.rb │ ├── mailer_helpers.rb │ ├── order_helpers.rb │ ├── organization_delete_helpers.rb │ ├── pause_helpers.rb │ ├── quick_prompt.rb │ ├── report_helpers.rb │ ├── response_helpers.rb │ ├── schema_validation_helpers.rb │ ├── shared_contexts │ ├── fresh_sheet_and_newsletter_subscription_types.rb │ ├── second_market.rb │ ├── the_fresh_market.rb │ └── the_mini_market.rb │ ├── shared_examples │ ├── activate_organizations.rb │ ├── admin_only_actions.rb │ ├── allowed_for_all_roles.rb │ ├── grants_access_to_buyers_and_sellers_only.rb │ ├── grants_access_to_buyers_only.rb │ ├── market_manager_action.rb │ ├── prevents_access_to_buyers.rb │ ├── restricted_action.rb │ └── soft_deleted_model.rb │ ├── sorting_helpers.rb │ ├── stripe_helpers.rb │ ├── stripe_webhooks_helpers.rb │ ├── subdomains.rb │ ├── suspend_helpers.rb │ ├── tabulator.rb │ ├── vcr.rb │ ├── wait_for_ajax.rb │ └── webhook_helpers.rb ├── tempfiles └── .keep ├── vendor └── assets │ ├── images │ ├── chosen-sprite.png │ └── chosen-sprite@2x.png │ ├── javascripts │ ├── .keep │ ├── BpTspSolver.js │ ├── chosen-jquery.js │ ├── chosen.jquery.coffee │ ├── es5-shim.js │ ├── es5-shim.map │ ├── es6-shim.js │ ├── es6-shim.map │ ├── fSelect.js │ ├── jSignature.min.js │ ├── jquery-modal.min.js │ ├── jquery.tablesorter.min.js │ ├── knockout-3.2.0.js │ ├── lib │ │ ├── abstract-chosen.coffee │ │ └── select-parser.coffee │ ├── moment.min.js │ ├── plotly-latest.min.js │ ├── promise.min.js │ ├── q.js │ ├── qz-tray.js │ ├── react-infinite-scroll.min.js │ ├── reflux.min.js │ ├── rsvp-3.1.0.min.js │ ├── sha-256.min.js │ ├── tsp.js.erb │ └── typeahead-0.11.1.js │ └── stylesheets │ ├── .keep │ ├── chosen.scss │ └── fSelect.css └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/.gitignore -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- 1 | public/ 2 | tmp/ 3 | log/ 4 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format doc 3 | --require spec_helper 4 | 5 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.8 2 | -------------------------------------------------------------------------------- /.slugignore: -------------------------------------------------------------------------------- 1 | /docs 2 | /spec 3 | -------------------------------------------------------------------------------- /.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/.vim -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/Brewfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/download_files/orgs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/download_files/orgs.csv -------------------------------------------------------------------------------- /app/assets/fonts/icomoon-ultimate.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/fonts/icomoon-ultimate.eot -------------------------------------------------------------------------------- /app/assets/fonts/icomoon-ultimate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/fonts/icomoon-ultimate.svg -------------------------------------------------------------------------------- /app/assets/fonts/icomoon-ultimate.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/fonts/icomoon-ultimate.ttf -------------------------------------------------------------------------------- /app/assets/fonts/icomoon-ultimate.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/fonts/icomoon-ultimate.woff -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/backgrounds/Peaches.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/backgrounds/Peaches.jpg -------------------------------------------------------------------------------- /app/assets/images/backgrounds/Potatoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/backgrounds/Potatoes.jpg -------------------------------------------------------------------------------- /app/assets/images/backgrounds/chard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/backgrounds/chard.jpg -------------------------------------------------------------------------------- /app/assets/images/backgrounds/cheese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/backgrounds/cheese.jpg -------------------------------------------------------------------------------- /app/assets/images/backgrounds/greens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/backgrounds/greens.jpg -------------------------------------------------------------------------------- /app/assets/images/backgrounds/lentils.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/backgrounds/lentils.jpg -------------------------------------------------------------------------------- /app/assets/images/backgrounds/painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/backgrounds/painting.jpg -------------------------------------------------------------------------------- /app/assets/images/backgrounds/tomatoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/backgrounds/tomatoes.jpg -------------------------------------------------------------------------------- /app/assets/images/bg-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/bg-flag.png -------------------------------------------------------------------------------- /app/assets/images/center-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/center-rule.png -------------------------------------------------------------------------------- /app/assets/images/center-rule@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/center-rule@2x.png -------------------------------------------------------------------------------- /app/assets/images/colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/colorpicker/alpha.png -------------------------------------------------------------------------------- /app/assets/images/colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/colorpicker/hue.png -------------------------------------------------------------------------------- /app/assets/images/default-product-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/default-product-image.png -------------------------------------------------------------------------------- /app/assets/images/footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/footer-logo.png -------------------------------------------------------------------------------- /app/assets/images/footer-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/footer-logo@2x.png -------------------------------------------------------------------------------- /app/assets/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/hamburger.png -------------------------------------------------------------------------------- /app/assets/images/horizontal-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/horizontal-rule.png -------------------------------------------------------------------------------- /app/assets/images/horizontal-rule@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/horizontal-rule@2x.png -------------------------------------------------------------------------------- /app/assets/images/icon-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/icon-cloud.png -------------------------------------------------------------------------------- /app/assets/images/icon-gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/icon-gear.png -------------------------------------------------------------------------------- /app/assets/images/icon-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/icon-tools.png -------------------------------------------------------------------------------- /app/assets/images/icons/black-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/icons/black-pin.png -------------------------------------------------------------------------------- /app/assets/images/icons/calendar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/icons/calendar@2x.png -------------------------------------------------------------------------------- /app/assets/images/icons/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/icons/check.png -------------------------------------------------------------------------------- /app/assets/images/icons/circled-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/icons/circled-check.png -------------------------------------------------------------------------------- /app/assets/images/icons/green-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/icons/green-pin.png -------------------------------------------------------------------------------- /app/assets/images/icons/red-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/icons/red-pin.png -------------------------------------------------------------------------------- /app/assets/images/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/icons/up.png -------------------------------------------------------------------------------- /app/assets/images/light-on-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/light-on-light.png -------------------------------------------------------------------------------- /app/assets/images/loading-progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/loading-progress.gif -------------------------------------------------------------------------------- /app/assets/images/logo-farm-to-fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/logo-farm-to-fork.png -------------------------------------------------------------------------------- /app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/logo.png -------------------------------------------------------------------------------- /app/assets/images/magnify-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/magnify-search.png -------------------------------------------------------------------------------- /app/assets/images/magnify-search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/magnify-search@2x.png -------------------------------------------------------------------------------- /app/assets/images/map-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/map-spinner.gif -------------------------------------------------------------------------------- /app/assets/images/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/progressbar.gif -------------------------------------------------------------------------------- /app/assets/images/smiley-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/smiley-sm.gif -------------------------------------------------------------------------------- /app/assets/images/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/sort.png -------------------------------------------------------------------------------- /app/assets/images/sort@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/sort@2x.png -------------------------------------------------------------------------------- /app/assets/images/tooltip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/tooltip-icon.png -------------------------------------------------------------------------------- /app/assets/images/tooltip-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/images/tooltip-icon@2x.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cart/cart.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/cart/cart.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/categories.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/categories.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/chosen.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/chosen.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/components.js -------------------------------------------------------------------------------- /app/assets/javascripts/cross_selling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/cross_selling.js -------------------------------------------------------------------------------- /app/assets/javascripts/dashboards.js.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/edit_table.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/edit_table.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/fading.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/fading.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/featured.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/featured.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/fees.js.coffee.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/fees.js.coffee.erb -------------------------------------------------------------------------------- /app/assets/javascripts/filters.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/filters.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/financials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/financials.js -------------------------------------------------------------------------------- /app/assets/javascripts/inventory.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/inventory.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/locations.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/locations.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/lots.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/lots.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/map.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/map.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/markets.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/markets.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/metrics.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/metrics.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/nav-admin.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/nav-admin.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/orders.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/orders.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/overlay.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/overlay.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/popups.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/popups.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/pricing.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/pricing.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/print.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/print.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/products.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/products.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/resolution.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/resolution.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/select_all.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/select_all.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/shop.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/shop.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/sniff.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/sniff.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/stripe.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/stripe.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/synchronousRemote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/synchronousRemote.js -------------------------------------------------------------------------------- /app/assets/javascripts/tab-box.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/tab-box.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/tabs.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/tabs.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/tokenizer.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/tokenizer.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/upload.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/upload.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/util.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/javascripts/util.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/application.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/cart.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/cart.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/colorpicker.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/colorpicker.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/divi_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/divi_styles.css -------------------------------------------------------------------------------- /app/assets/stylesheets/forms.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/forms.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/index-cal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/index-cal.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/invoices.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/invoices.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/layout.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/layout.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/map.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/map.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/mixins.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/mixins.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/states.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/states.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/theme.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/theme.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/z-print.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/z-print.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/z-sniff.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/assets/stylesheets/z-sniff.css.scss -------------------------------------------------------------------------------- /app/concerns/product_lookup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/concerns/product_lookup.rb -------------------------------------------------------------------------------- /app/controllers/admin/fees_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/admin/fees_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/lots_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/admin/lots_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/qlik_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/admin/qlik_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/admin_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/api/base.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/api/v2/base.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/api/v2/defaults.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/api/v2/orders.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/api/v2/products.rb -------------------------------------------------------------------------------- /app/controllers/audited_sweeper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/audited_sweeper.rb -------------------------------------------------------------------------------- /app/controllers/carts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/carts_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/inventory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/concerns/inventory.rb -------------------------------------------------------------------------------- /app/controllers/dashboards_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/dashboards_controller.rb -------------------------------------------------------------------------------- /app/controllers/dev/pdf_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/dev/pdf_controller.rb -------------------------------------------------------------------------------- /app/controllers/help_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/help_controller.rb -------------------------------------------------------------------------------- /app/controllers/markets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/markets_controller.rb -------------------------------------------------------------------------------- /app/controllers/orders_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/orders_controller.rb -------------------------------------------------------------------------------- /app/controllers/pdf_tester_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/pdf_tester_controller.rb -------------------------------------------------------------------------------- /app/controllers/pdf_view_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/pdf_view_controller.rb -------------------------------------------------------------------------------- /app/controllers/products_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/products_controller.rb -------------------------------------------------------------------------------- /app/controllers/qr_code_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/qr_code_controller.rb -------------------------------------------------------------------------------- /app/controllers/sellers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/sellers_controller.rb -------------------------------------------------------------------------------- /app/controllers/templates_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/templates_controller.rb -------------------------------------------------------------------------------- /app/controllers/upload_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/controllers/upload_controller.rb -------------------------------------------------------------------------------- /app/decorators/audit_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/audit_decorator.rb -------------------------------------------------------------------------------- /app/decorators/cart_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/cart_decorator.rb -------------------------------------------------------------------------------- /app/decorators/cart_item_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/cart_item_decorator.rb -------------------------------------------------------------------------------- /app/decorators/category_fee_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/category_fee_decorator.rb -------------------------------------------------------------------------------- /app/decorators/delivery_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/delivery_decorator.rb -------------------------------------------------------------------------------- /app/decorators/discount_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/discount_decorator.rb -------------------------------------------------------------------------------- /app/decorators/location_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/location_decorator.rb -------------------------------------------------------------------------------- /app/decorators/lot_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/lot_decorator.rb -------------------------------------------------------------------------------- /app/decorators/market_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/market_decorator.rb -------------------------------------------------------------------------------- /app/decorators/order_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/order_decorator.rb -------------------------------------------------------------------------------- /app/decorators/order_item_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/order_item_decorator.rb -------------------------------------------------------------------------------- /app/decorators/organization_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/organization_decorator.rb -------------------------------------------------------------------------------- /app/decorators/payment_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/payment_decorator.rb -------------------------------------------------------------------------------- /app/decorators/price_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/price_decorator.rb -------------------------------------------------------------------------------- /app/decorators/product_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/product_decorator.rb -------------------------------------------------------------------------------- /app/decorators/promotion_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/promotion_decorator.rb -------------------------------------------------------------------------------- /app/decorators/subscription_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/subscription_decorator.rb -------------------------------------------------------------------------------- /app/decorators/user_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/decorators/user_decorator.rb -------------------------------------------------------------------------------- /app/helpers/address_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/address_helper.rb -------------------------------------------------------------------------------- /app/helpers/admin/financials_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/admin/financials_helper.rb -------------------------------------------------------------------------------- /app/helpers/admin/organization_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/admin/organization_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/cart_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/cart_helper.rb -------------------------------------------------------------------------------- /app/helpers/dashboards_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/dashboards_helper.rb -------------------------------------------------------------------------------- /app/helpers/layout_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/layout_helper.rb -------------------------------------------------------------------------------- /app/helpers/map_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/map_helper.rb -------------------------------------------------------------------------------- /app/helpers/orders_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/orders_helper.rb -------------------------------------------------------------------------------- /app/helpers/payment_provider_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/payment_provider_helper.rb -------------------------------------------------------------------------------- /app/helpers/products_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/products_helper.rb -------------------------------------------------------------------------------- /app/helpers/social_media_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/social_media_helper.rb -------------------------------------------------------------------------------- /app/helpers/style_guide_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/style_guide_helper.rb -------------------------------------------------------------------------------- /app/helpers/toggle_active_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/helpers/toggle_active_helper.rb -------------------------------------------------------------------------------- /app/interactors/activate_organization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/activate_organization.rb -------------------------------------------------------------------------------- /app/interactors/add_items_to_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/add_items_to_order.rb -------------------------------------------------------------------------------- /app/interactors/add_market_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/add_market_manager.rb -------------------------------------------------------------------------------- /app/interactors/attempt_purchase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/attempt_purchase.rb -------------------------------------------------------------------------------- /app/interactors/charge_service_fee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/charge_service_fee.rb -------------------------------------------------------------------------------- /app/interactors/clear_invoice_pdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/clear_invoice_pdf.rb -------------------------------------------------------------------------------- /app/interactors/create_bank_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/create_bank_account.rb -------------------------------------------------------------------------------- /app/interactors/create_invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/create_invoice.rb -------------------------------------------------------------------------------- /app/interactors/create_market.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/create_market.rb -------------------------------------------------------------------------------- /app/interactors/create_market_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/create_market_address.rb -------------------------------------------------------------------------------- /app/interactors/create_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/create_order.rb -------------------------------------------------------------------------------- /app/interactors/create_organization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/create_organization.rb -------------------------------------------------------------------------------- /app/interactors/create_product_split.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/create_product_split.rb -------------------------------------------------------------------------------- /app/interactors/delete_cart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/delete_cart.rb -------------------------------------------------------------------------------- /app/interactors/delete_locations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/delete_locations.rb -------------------------------------------------------------------------------- /app/interactors/duplicate_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/duplicate_order.rb -------------------------------------------------------------------------------- /app/interactors/export_bill_to_qb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/export_bill_to_qb.rb -------------------------------------------------------------------------------- /app/interactors/export_invoice_to_qb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/export_invoice_to_qb.rb -------------------------------------------------------------------------------- /app/interactors/generate_invoice_pdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/generate_invoice_pdf.rb -------------------------------------------------------------------------------- /app/interactors/mark_order_invoiced.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/mark_order_invoiced.rb -------------------------------------------------------------------------------- /app/interactors/mark_order_uninvoiced.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/mark_order_uninvoiced.rb -------------------------------------------------------------------------------- /app/interactors/merge_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/merge_order.rb -------------------------------------------------------------------------------- /app/interactors/place_stripe_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/place_stripe_order.rb -------------------------------------------------------------------------------- /app/interactors/record_buyer_payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/record_buyer_payment.rb -------------------------------------------------------------------------------- /app/interactors/record_vendor_payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/record_vendor_payment.rb -------------------------------------------------------------------------------- /app/interactors/remove_credit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/remove_credit.rb -------------------------------------------------------------------------------- /app/interactors/remove_delivery_fee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/remove_delivery_fee.rb -------------------------------------------------------------------------------- /app/interactors/roll_your_own_market.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/roll_your_own_market.rb -------------------------------------------------------------------------------- /app/interactors/send_fresh_sheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/send_fresh_sheet.rb -------------------------------------------------------------------------------- /app/interactors/send_invoice_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/send_invoice_email.rb -------------------------------------------------------------------------------- /app/interactors/send_invoice_emails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/send_invoice_emails.rb -------------------------------------------------------------------------------- /app/interactors/send_newsletter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/send_newsletter.rb -------------------------------------------------------------------------------- /app/interactors/send_order_emails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/send_order_emails.rb -------------------------------------------------------------------------------- /app/interactors/send_update_emails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/send_update_emails.rb -------------------------------------------------------------------------------- /app/interactors/store_order_fees.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/store_order_fees.rb -------------------------------------------------------------------------------- /app/interactors/un_repack_transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/un_repack_transaction.rb -------------------------------------------------------------------------------- /app/interactors/un_shrink_transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/un_shrink_transaction.rb -------------------------------------------------------------------------------- /app/interactors/unclose_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/unclose_order.rb -------------------------------------------------------------------------------- /app/interactors/update_delivery_fee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/update_delivery_fee.rb -------------------------------------------------------------------------------- /app/interactors/update_lots.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/update_lots.rb -------------------------------------------------------------------------------- /app/interactors/update_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/update_order.rb -------------------------------------------------------------------------------- /app/interactors/update_order_delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/update_order_delivery.rb -------------------------------------------------------------------------------- /app/interactors/update_purchase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/update_purchase.rb -------------------------------------------------------------------------------- /app/interactors/update_quantities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/update_quantities.rb -------------------------------------------------------------------------------- /app/interactors/validate_order_total.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/interactors/validate_order_total.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/base_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/mailers/base_mailer.rb -------------------------------------------------------------------------------- /app/mailers/export_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/mailers/export_mailer.rb -------------------------------------------------------------------------------- /app/mailers/local_orbit/devise_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/mailers/local_orbit/devise_mailer.rb -------------------------------------------------------------------------------- /app/mailers/market_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/mailers/market_mailer.rb -------------------------------------------------------------------------------- /app/mailers/order_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/mailers/order_mailer.rb -------------------------------------------------------------------------------- /app/mailers/payment_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/mailers/payment_mailer.rb -------------------------------------------------------------------------------- /app/mailers/upload_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/mailers/upload_mailer.rb -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/mailers/webhook_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/mailers/webhook_mailer.rb -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/audit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/audit.rb -------------------------------------------------------------------------------- /app/models/bank_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/bank_account.rb -------------------------------------------------------------------------------- /app/models/batch_invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/batch_invoice.rb -------------------------------------------------------------------------------- /app/models/batch_invoice_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/batch_invoice_error.rb -------------------------------------------------------------------------------- /app/models/batch_invoice_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/batch_invoice_order.rb -------------------------------------------------------------------------------- /app/models/cart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/cart.rb -------------------------------------------------------------------------------- /app/models/cart_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/cart_item.rb -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/category_fee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/category_fee.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/delivery_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/concerns/delivery_status.rb -------------------------------------------------------------------------------- /app/models/concerns/soft_delete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/concerns/soft_delete.rb -------------------------------------------------------------------------------- /app/models/concerns/sortable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/concerns/sortable.rb -------------------------------------------------------------------------------- /app/models/consignment_printable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/consignment_printable.rb -------------------------------------------------------------------------------- /app/models/consignment_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/consignment_product.rb -------------------------------------------------------------------------------- /app/models/consignment_transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/consignment_transaction.rb -------------------------------------------------------------------------------- /app/models/credit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/credit.rb -------------------------------------------------------------------------------- /app/models/cross_selling_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/cross_selling_list.rb -------------------------------------------------------------------------------- /app/models/cross_selling_list_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/cross_selling_list_product.rb -------------------------------------------------------------------------------- /app/models/delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/delivery.rb -------------------------------------------------------------------------------- /app/models/delivery_note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/delivery_note.rb -------------------------------------------------------------------------------- /app/models/delivery_schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/delivery_schedule.rb -------------------------------------------------------------------------------- /app/models/discount.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/discount.rb -------------------------------------------------------------------------------- /app/models/event.rb: -------------------------------------------------------------------------------- 1 | class Event < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/external_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/external_product.rb -------------------------------------------------------------------------------- /app/models/fresh_sheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/fresh_sheet.rb -------------------------------------------------------------------------------- /app/models/general_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/general_product.rb -------------------------------------------------------------------------------- /app/models/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/location.rb -------------------------------------------------------------------------------- /app/models/lot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/lot.rb -------------------------------------------------------------------------------- /app/models/managed_market.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/managed_market.rb -------------------------------------------------------------------------------- /app/models/market.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/market.rb -------------------------------------------------------------------------------- /app/models/market_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/market_address.rb -------------------------------------------------------------------------------- /app/models/market_cross_sells.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/market_cross_sells.rb -------------------------------------------------------------------------------- /app/models/market_organization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/market_organization.rb -------------------------------------------------------------------------------- /app/models/metric.rb: -------------------------------------------------------------------------------- 1 | class Metric < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/newsletter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/newsletter.rb -------------------------------------------------------------------------------- /app/models/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/order.rb -------------------------------------------------------------------------------- /app/models/order_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/order_item.rb -------------------------------------------------------------------------------- /app/models/order_item_lot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/order_item_lot.rb -------------------------------------------------------------------------------- /app/models/order_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/order_number.rb -------------------------------------------------------------------------------- /app/models/order_payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/order_payment.rb -------------------------------------------------------------------------------- /app/models/order_printable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/order_printable.rb -------------------------------------------------------------------------------- /app/models/order_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/order_template.rb -------------------------------------------------------------------------------- /app/models/order_template_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/order_template_item.rb -------------------------------------------------------------------------------- /app/models/organization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/organization.rb -------------------------------------------------------------------------------- /app/models/packing_labels_printable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/packing_labels_printable.rb -------------------------------------------------------------------------------- /app/models/payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/payment.rb -------------------------------------------------------------------------------- /app/models/plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/plan.rb -------------------------------------------------------------------------------- /app/models/price.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/price.rb -------------------------------------------------------------------------------- /app/models/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/product.rb -------------------------------------------------------------------------------- /app/models/product_delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/product_delivery.rb -------------------------------------------------------------------------------- /app/models/promotion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/promotion.rb -------------------------------------------------------------------------------- /app/models/qb_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/qb_profile.rb -------------------------------------------------------------------------------- /app/models/qb_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/qb_token.rb -------------------------------------------------------------------------------- /app/models/registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/registration.rb -------------------------------------------------------------------------------- /app/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/role.rb -------------------------------------------------------------------------------- /app/models/role_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/role_action.rb -------------------------------------------------------------------------------- /app/models/sequence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/sequence.rb -------------------------------------------------------------------------------- /app/models/storage_location.rb: -------------------------------------------------------------------------------- 1 | class StorageLocation < ActiveRecord::Base 2 | belongs_to :market 3 | 4 | end -------------------------------------------------------------------------------- /app/models/subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/subscription.rb -------------------------------------------------------------------------------- /app/models/subscription_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/subscription_type.rb -------------------------------------------------------------------------------- /app/models/twitter_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/twitter_user.rb -------------------------------------------------------------------------------- /app/models/unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/unit.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_organization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/models/user_organization.rb -------------------------------------------------------------------------------- /app/policies/about_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/about_policy.rb -------------------------------------------------------------------------------- /app/policies/advanced_pricing_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/advanced_pricing_policy.rb -------------------------------------------------------------------------------- /app/policies/all_supplier_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/all_supplier_policy.rb -------------------------------------------------------------------------------- /app/policies/application_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/application_policy.rb -------------------------------------------------------------------------------- /app/policies/catalog_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/catalog_policy.rb -------------------------------------------------------------------------------- /app/policies/custom_background_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/custom_background_policy.rb -------------------------------------------------------------------------------- /app/policies/dashboard_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/dashboard_policy.rb -------------------------------------------------------------------------------- /app/policies/delivery_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/delivery_policy.rb -------------------------------------------------------------------------------- /app/policies/delivery_schedule_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/delivery_schedule_policy.rb -------------------------------------------------------------------------------- /app/policies/discount_code_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/discount_code_policy.rb -------------------------------------------------------------------------------- /app/policies/dup_order_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/dup_order_policy.rb -------------------------------------------------------------------------------- /app/policies/email_test_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/email_test_policy.rb -------------------------------------------------------------------------------- /app/policies/enter_receipts_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/enter_receipts_policy.rb -------------------------------------------------------------------------------- /app/policies/event_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/event_policy.rb -------------------------------------------------------------------------------- /app/policies/financial_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/financial_policy.rb -------------------------------------------------------------------------------- /app/policies/fresh_sheet_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/fresh_sheet_policy.rb -------------------------------------------------------------------------------- /app/policies/import_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/import_policy.rb -------------------------------------------------------------------------------- /app/policies/lot_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/lot_policy.rb -------------------------------------------------------------------------------- /app/policies/market_address_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/market_address_policy.rb -------------------------------------------------------------------------------- /app/policies/market_deliveries_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/market_deliveries_policy.rb -------------------------------------------------------------------------------- /app/policies/market_fees_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/market_fees_policy.rb -------------------------------------------------------------------------------- /app/policies/market_manager_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/market_manager_policy.rb -------------------------------------------------------------------------------- /app/policies/market_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/market_policy.rb -------------------------------------------------------------------------------- /app/policies/market_profile_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/market_profile_policy.rb -------------------------------------------------------------------------------- /app/policies/market_quickbooks_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/market_quickbooks_policy.rb -------------------------------------------------------------------------------- /app/policies/market_stripe_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/market_stripe_policy.rb -------------------------------------------------------------------------------- /app/policies/merge_order_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/merge_order_policy.rb -------------------------------------------------------------------------------- /app/policies/metric_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/metric_policy.rb -------------------------------------------------------------------------------- /app/policies/newsletter_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/newsletter_policy.rb -------------------------------------------------------------------------------- /app/policies/order_item_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/order_item_policy.rb -------------------------------------------------------------------------------- /app/policies/order_minimum_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/order_minimum_policy.rb -------------------------------------------------------------------------------- /app/policies/order_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/order_policy.rb -------------------------------------------------------------------------------- /app/policies/organization_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/organization_policy.rb -------------------------------------------------------------------------------- /app/policies/payment_history_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/payment_history_policy.rb -------------------------------------------------------------------------------- /app/policies/product_fees_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/product_fees_policy.rb -------------------------------------------------------------------------------- /app/policies/product_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/product_policy.rb -------------------------------------------------------------------------------- /app/policies/promotion_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/promotion_policy.rb -------------------------------------------------------------------------------- /app/policies/purchase_history_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/purchase_history_policy.rb -------------------------------------------------------------------------------- /app/policies/purchase_order_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/purchase_order_policy.rb -------------------------------------------------------------------------------- /app/policies/qlik_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/qlik_policy.rb -------------------------------------------------------------------------------- /app/policies/record_payments_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/record_payments_policy.rb -------------------------------------------------------------------------------- /app/policies/referral_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/referral_policy.rb -------------------------------------------------------------------------------- /app/policies/report_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/report_policy.rb -------------------------------------------------------------------------------- /app/policies/review_invoices_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/review_invoices_policy.rb -------------------------------------------------------------------------------- /app/policies/role_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/role_policy.rb -------------------------------------------------------------------------------- /app/policies/routing_plan_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/routing_plan_policy.rb -------------------------------------------------------------------------------- /app/policies/send_invoices_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/send_invoices_policy.rb -------------------------------------------------------------------------------- /app/policies/sent_email_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/sent_email_policy.rb -------------------------------------------------------------------------------- /app/policies/taxonomy_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/taxonomy_policy.rb -------------------------------------------------------------------------------- /app/policies/template_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/template_policy.rb -------------------------------------------------------------------------------- /app/policies/unit_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/unit_policy.rb -------------------------------------------------------------------------------- /app/policies/user_organization_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/user_organization_policy.rb -------------------------------------------------------------------------------- /app/policies/user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/policies/user_policy.rb -------------------------------------------------------------------------------- /app/presenters/buyer_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/buyer_order.rb -------------------------------------------------------------------------------- /app/presenters/buyer_order_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/buyer_order_presenter.rb -------------------------------------------------------------------------------- /app/presenters/financial_overview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/financial_overview.rb -------------------------------------------------------------------------------- /app/presenters/load_list_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/load_list_presenter.rb -------------------------------------------------------------------------------- /app/presenters/metrics_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/metrics_presenter.rb -------------------------------------------------------------------------------- /app/presenters/order_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/order_presenter.rb -------------------------------------------------------------------------------- /app/presenters/order_search_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/order_search_presenter.rb -------------------------------------------------------------------------------- /app/presenters/order_totals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/order_totals.rb -------------------------------------------------------------------------------- /app/presenters/pick_list_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/pick_list_presenter.rb -------------------------------------------------------------------------------- /app/presenters/products_for_sale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/products_for_sale.rb -------------------------------------------------------------------------------- /app/presenters/report_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/report_presenter.rb -------------------------------------------------------------------------------- /app/presenters/request_url_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/request_url_presenter.rb -------------------------------------------------------------------------------- /app/presenters/seller_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/seller_order.rb -------------------------------------------------------------------------------- /app/presenters/seller_payment_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/seller_payment_group.rb -------------------------------------------------------------------------------- /app/presenters/totals_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/presenters/totals_presenter.rb -------------------------------------------------------------------------------- /app/serializers/location_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/serializers/location_serializer.rb -------------------------------------------------------------------------------- /app/serializers/market_map_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/serializers/market_map_serializer.rb -------------------------------------------------------------------------------- /app/serializers/order_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/serializers/order_serializer.rb -------------------------------------------------------------------------------- /app/serializers/product_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/serializers/product_serializer.rb -------------------------------------------------------------------------------- /app/views/admin/categories/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/categories/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/categories/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/discounts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/discounts/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/discounts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/discounts/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/discounts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/discounts/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/fees/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/fees/_header.html.erb -------------------------------------------------------------------------------- /app/views/admin/fees/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/fees/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/invoices/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/invoices/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/labels/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/labels/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/labels/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/labels/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/load_list/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/load_list/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/locations/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/locations/_form.html.erb -------------------------------------------------------------------------------- /app/views/admin/locations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/locations/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/locations/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/locations/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/locations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/locations/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/lots/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/lots/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/markets/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/markets/_form.html.erb -------------------------------------------------------------------------------- /app/views/admin/markets/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/markets/_header.html.erb -------------------------------------------------------------------------------- /app/views/admin/markets/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/markets/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/markets/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/markets/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/markets/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/markets/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/metrics/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/metrics/_header.html.erb -------------------------------------------------------------------------------- /app/views/admin/metrics/map.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/metrics/map.html.erb -------------------------------------------------------------------------------- /app/views/admin/metrics/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/metrics/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/newsletters/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/newsletters/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/orders/_filters.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/orders/_filters.html.erb -------------------------------------------------------------------------------- /app/views/admin/orders/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/orders/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/orders/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/orders/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/pack_lists/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/pack_lists/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/pick_lists/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/pick_lists/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/prices/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/prices/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/products/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/products/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/products/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/products/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/products/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/products/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/promotions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/promotions/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/promotions/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/promotions/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/reports/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/reports/_footer.html.erb -------------------------------------------------------------------------------- /app/views/admin/reports/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/reports/_header.html.erb -------------------------------------------------------------------------------- /app/views/admin/reports/report.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/reports/report.html.erb -------------------------------------------------------------------------------- /app/views/admin/roles/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/roles/_form.html.erb -------------------------------------------------------------------------------- /app/views/admin/roles/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/roles/_header.html.erb -------------------------------------------------------------------------------- /app/views/admin/roles/_role.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/roles/_role.html.erb -------------------------------------------------------------------------------- /app/views/admin/roles/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/roles/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/roles/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/roles/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/roles/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/roles/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/upload/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/upload/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/upload/newjob.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/upload/newjob.html.erb -------------------------------------------------------------------------------- /app/views/admin/upload/upload.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/upload/upload.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/users/_form.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/users/_header.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalOrbit/localorbit/HEAD/app/views/admin/users/index.html.erb -------------------------------------------------------------------------------- /app/views/avery_labels/_page_break.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/avery_labels/_reset_page.erb: -------------------------------------------------------------------------------- 1 |