mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-05-26 01:05:07 -04:00
Compare commits
21 Commits
eventsauce
...
3.3.5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b4c48e5141 | ||
|
|
b925155ba5 | ||
|
|
d07b9349e3 | ||
|
|
51a8cffc9e | ||
|
|
694b7fe52d | ||
|
|
5669dff7da | ||
|
|
6d8890f61e | ||
|
|
a4bae6536d | ||
|
|
e1e61ba98d | ||
|
|
225bfda867 | ||
|
|
0a2dc49e3e | ||
|
|
dcc9745991 | ||
|
|
339eca6028 | ||
|
|
d1e9b6d943 | ||
|
|
2da34b0789 | ||
|
|
44d89a5ed2 | ||
|
|
0637266560 | ||
|
|
32c99248af | ||
|
|
fad53d52d4 | ||
|
|
29bdb7b75e | ||
|
|
3f1bbf99b4 |
@@ -7,6 +7,11 @@ branches:
|
||||
services:
|
||||
- docker
|
||||
before_install:
|
||||
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
|
||||
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
|
||||
- sudo apt-get update
|
||||
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce
|
||||
- docker --version
|
||||
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
|
||||
- chmod +x docker-compose
|
||||
- sudo mv docker-compose /usr/local/bin
|
||||
@@ -22,7 +27,7 @@ script:
|
||||
- docker-compose -f docker-compose.test.yml up --abort-on-container-exit
|
||||
env:
|
||||
global:
|
||||
- DOCKER_COMPOSE_VERSION=1.21.1
|
||||
- DOCKER_COMPOSE_VERSION=1.29.1
|
||||
- TAG=$(echo ${TRAVIS_BRANCH} | sed s/feature\\///)
|
||||
- date=`date +%Y%m%d%H%M%S` && branch=${TRAVIS_BRANCH} && rev=`git rev-parse --short=6 HEAD`
|
||||
after_success:
|
||||
|
||||
27
SECURITY.md
Normal file
27
SECURITY.md
Normal file
@@ -0,0 +1,27 @@
|
||||
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
||||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
||||
|
||||
|
||||
- [Security Policy](#security-policy)
|
||||
- [Supported Versions](#supported-versions)
|
||||
- [Reporting a Vulnerability](#reporting-a-vulnerability)
|
||||
|
||||
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
||||
|
||||
# Security Policy
|
||||
|
||||
## Supported Versions
|
||||
|
||||
We release patches for security vulnerabilities. Which versions are eligible
|
||||
receiving such patches depend on the CVSS v3.0 Rating:
|
||||
|
||||
| CVSS v3.0 | Supported Versions |
|
||||
| --------- | -------------------------------------------------- |
|
||||
| 7.3 | 3.5.5 |
|
||||
|
||||
## Reporting a Vulnerability
|
||||
|
||||
Please report (suspected) security vulnerabilities to
|
||||
**[jekkos](mailto:jekkos@opensourcepos.org)**. You will receive a response from
|
||||
us within 48 hours. If the issue is confirmed, we will release a patch as soon
|
||||
as possible depending on complexity but historically within a few days.
|
||||
@@ -1,3 +1,18 @@
|
||||
Version 3.3.5
|
||||
-------------
|
||||
+ Translation updates (Romanian, Ukranian, Vietnamese, Thai, Polish, Swedish, Portugese, Arabic, French, Chinese, Dutch, Tamil, Turkish, Spanish)
|
||||
+ New login page restyle
|
||||
+ Partial BS5 upgrade
|
||||
+ Username verification fix on employee insert/update
|
||||
+ Minor report fixes
|
||||
+ Attribute encoding fix
|
||||
+ Grunt/CI updates
|
||||
+ Database and performance optimizations
|
||||
+ CSV item import improvements
|
||||
+ Fix decimal render
|
||||
+ Translation fallback in other languages than english
|
||||
+ Fixes for docker to make it run on Windows
|
||||
|
||||
Version 3.3.4
|
||||
-------------
|
||||
+ Translation updates (Hungarian, Indonesian, Bosnian, Ukranian, Vietnamese, Spanish)
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
|
||||
|
|
||||
*/
|
||||
$config['application_version'] = '3.4.0-dev';
|
||||
$config['application_version'] = '3.3.5';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
||||
@@ -24,7 +24,7 @@ class Attributes extends Secure_Controller
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? definition.definition_name : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$attributes = $this->Attribute->search($search, $limit, $offset, $sort, $order);
|
||||
@@ -189,4 +189,4 @@ class Attributes extends Secure_Controller
|
||||
echo json_encode(array('success' => FALSE, 'message' => $this->lang->line('attributes_definition_cannot_be_deleted')));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ class Cashups extends Secure_Controller
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? 'cashup_id' : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
$filters = array(
|
||||
'start_date' => $this->input->get('start_date'),
|
||||
|
||||
@@ -58,7 +58,7 @@ class Customers extends Persons
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? LAST_NAME : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$customers = $this->Customer->search($search, $limit, $offset, $sort, $order);
|
||||
|
||||
@@ -17,7 +17,7 @@ class Employees extends Persons
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? LAST_NAME : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$employees = $this->Employee->search($search, $limit, $offset, $sort, $order);
|
||||
|
||||
@@ -30,7 +30,7 @@ class Expenses extends Secure_Controller
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? 'expense_id' : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
$filters = array(
|
||||
'start_date' => $this->input->get('start_date'),
|
||||
|
||||
@@ -24,7 +24,7 @@ class Expenses_categories extends Secure_Controller
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? 'category_name' : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$expense_categories = $this->Expense_category->search($search, $limit, $offset, $sort, $order);
|
||||
|
||||
@@ -24,7 +24,7 @@ class Giftcards extends Secure_Controller
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? 'giftcard_number' : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$giftcards = $this->Giftcard->search($search, $limit, $offset, $sort, $order);
|
||||
|
||||
@@ -59,7 +59,7 @@ class Item_kits extends Secure_Controller
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? NAME : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$item_kits = $this->Item_kit->search($search, $limit, $offset, $sort, $order);
|
||||
|
||||
@@ -40,7 +40,7 @@ class Items extends Secure_Controller
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? NAME : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$this->item_lib->set_item_location($this->input->get('stock_location'));
|
||||
|
||||
@@ -54,10 +54,10 @@ class Sales extends Secure_Controller
|
||||
public function search()
|
||||
{
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$order = $this->input->get('order');
|
||||
$sort = $this->input->post('sort') === NULL ? 'sales.sale_time' : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$filters = array('sale_type' => 'all',
|
||||
'location_id' => 'all',
|
||||
|
||||
@@ -35,7 +35,7 @@ class Suppliers extends Persons
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? LAST_NAME : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$suppliers = $this->Supplier->search($search, $limit, $offset, $sort, $order);
|
||||
|
||||
@@ -25,7 +25,7 @@ class Tax_categories extends Secure_Controller
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? 'tax_category' : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$tax_categories = $this->Tax_category->search($search, $limit, $offset, $sort, $order);
|
||||
|
||||
@@ -29,7 +29,7 @@ class Tax_codes extends Secure_Controller
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? 'tax_code_name' : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$tax_codes = $this->Tax_code->search($search, $limit, $offset, $sort, $order);
|
||||
|
||||
@@ -25,7 +25,7 @@ class Tax_jurisdictions extends Secure_Controller
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? 'jurisdiction_name' : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$tax_jurisdictions = $this->Tax_jurisdiction->search($search, $limit, $offset, $sort, $order);
|
||||
|
||||
@@ -57,7 +57,7 @@ class Taxes extends Secure_Controller
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$sort = $this->input->post('sort') === NULL ? 'tax_code_name' : $this->db->escape($this->input->get('sort'));
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$tax_rates = $this->Tax->search($search, $limit, $offset, $sort, $order);
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
|
||||
$lang["tables_all"] = "Todos";
|
||||
<?php
|
||||
$lang["tables_all"] = "Todas";
|
||||
$lang["tables_columns"] = "Columnas";
|
||||
$lang["tables_hide_show_pagination"] = "Ocultar/Mostrar paginación";
|
||||
$lang["tables_loading"] = "Por favor espere...";
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["cashups_amount"] = "Cantidad";
|
||||
$lang["cashups_amount_number"] = "Cantidad debe ser un numero";
|
||||
$lang["cashups_amount_required"] = "Cantidad es un campo obligatorio.";
|
||||
@@ -36,3 +35,14 @@ $lang["cashups_successful_updating"] = "Turno actualizado con éxito";
|
||||
$lang["cashups_total"] = "Total";
|
||||
$lang["cashups_transfer_amount_cash"] = "Salida/Entrada de Efectivo";
|
||||
$lang["cashups_update"] = "Actualizar Turno";
|
||||
$lang["cashups_warning"] = "No enviar a menos que sea Abierto o Cerrado en el día";
|
||||
$lang['cashups_transfer_amount_cash'] = "Entrada/Salida de Efectivo";
|
||||
$lang['cashups_transfer_amount_cash_minus'] = "Convertir en Efectivo = -";
|
||||
$lang["cashups_info_employee"] = "Empleado Información de Efectivo";
|
||||
$lang["cashups_giftcard"] = "Tarjetas de Regalo de Efectivo";
|
||||
$lang["cashups_enable_expected"] = "Mostrar Ventas";
|
||||
$lang["cashups_closed_amount_giftcard"] = "Tarjetas de Regalo";
|
||||
$lang["cashups_confirm_submit"] = "¿Está seguro que desea enviar este efectivo? La jornada estará cerrada.";
|
||||
$lang["cashups_cash_difference"] = "Diferencia de Efectivo: ";
|
||||
$lang["cashups_cancel_cashups_enter"] = "Pulse Aceptar para enviar o haga clic en Cancelar para continuar editando";
|
||||
$lang["cashups_cancel_cashups"] = "Cancelar";
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["common_address_1"] = "Dirección 1";
|
||||
$lang["common_address_2"] = "Dirección 2";
|
||||
$lang["common_city"] = "Ciudad";
|
||||
@@ -28,12 +27,12 @@ $lang["common_gender"] = "Género";
|
||||
$lang["common_gender_female"] = "F";
|
||||
$lang["common_gender_male"] = "M";
|
||||
$lang["common_gender_undefined"] = "";
|
||||
$lang["common_icon"] = "";
|
||||
$lang["common_id"] = "Id";
|
||||
$lang["common_icon"] = "Icono";
|
||||
$lang["common_id"] = "Identificación";
|
||||
$lang["common_import"] = "Importar";
|
||||
$lang["common_import_change_file"] = "Cambiar";
|
||||
$lang["common_import_csv"] = "Importar CSV";
|
||||
$lang["common_import_full_path"] = "Se requiere la ruta completa del archivo CSV";
|
||||
$lang["common_import_full_path"] = "La ruta completa al archivo CSV es requerida";
|
||||
$lang["common_import_remove_file"] = "Quitar";
|
||||
$lang["common_import_select_file"] = "Selecciona archivo";
|
||||
$lang["common_inv"] = "Inv";
|
||||
@@ -42,9 +41,9 @@ $lang["common_last_name_required"] = "Apellidos es un campo requerido.";
|
||||
$lang["common_last_page"] = "Ultima";
|
||||
$lang["common_learn_about_project"] = "para leer la información más reciente acerca del proyecto.";
|
||||
$lang["common_list_of"] = "Lista de";
|
||||
$lang["common_logo"] = "";
|
||||
$lang["common_logo_mark"] = "";
|
||||
$lang["common_logout"] = "Salir";
|
||||
$lang["common_logo"] = "Logotipo";
|
||||
$lang["common_logo_mark"] = "Marca";
|
||||
$lang["common_logout"] = "Cerrar sesión";
|
||||
$lang["common_migration_needed"] = "La migración de la base de datos hacia %1 comenzará después de iniciar sesión.";
|
||||
$lang["common_new"] = "Nuevo";
|
||||
$lang["common_no"] = "";
|
||||
@@ -64,8 +63,8 @@ $lang["common_return_policy"] = "Política de Devolución";
|
||||
$lang["common_search"] = "Buscar";
|
||||
$lang["common_search_options"] = "Opciones de búsqueda";
|
||||
$lang["common_searched_for"] = "Buscado";
|
||||
$lang["common_software_short"] = "";
|
||||
$lang["common_software_title"] = "";
|
||||
$lang["common_software_short"] = "OSPOS";
|
||||
$lang["common_software_title"] = "Punto de Venta Open Source";
|
||||
$lang["common_state"] = "Estado";
|
||||
$lang["common_submit"] = "Enviar";
|
||||
$lang["common_total_spent"] = "Total gastado";
|
||||
@@ -73,7 +72,40 @@ $lang["common_unknown"] = "Desconocido";
|
||||
$lang["common_view_recent_sales"] = "Ver Ventas Recientes";
|
||||
$lang["common_website"] = "opensourcepos.org";
|
||||
$lang["common_welcome"] = "Bienvenido(a)";
|
||||
$lang["common_welcome_message"] = "Bienvenido(a) a OSPOS. ¡Haz click en algún módulo, para empezar.";
|
||||
$lang["common_welcome_message"] = "Bienvenido(a) a OSPOS. Haz click en algún módulo, para empezar.";
|
||||
$lang["common_yes"] = "";
|
||||
$lang["common_you_are_using_ospos"] = "Estás usando Open Source Point Of Sale Versión";
|
||||
$lang["common_zip"] = "Código Postal";
|
||||
$lang["commom_carrier"] = "Operadores
|
||||
|
||||
AT&T
|
||||
@txt.att.net
|
||||
|
||||
Boost Mobile\t
|
||||
@smsmyboostmobile.com
|
||||
|
||||
Cricket\t
|
||||
@sms.cricketwireless.net
|
||||
|
||||
Sprint\t
|
||||
@messaging.sprintpcs.com
|
||||
|
||||
T-Mobile
|
||||
@tmomail.net
|
||||
|
||||
U.S. Cellular\t
|
||||
@email.uscc.net
|
||||
|
||||
Verizon\t
|
||||
@vtext.com
|
||||
|
||||
Virgin Mobile\t
|
||||
@vmobl.com";
|
||||
$lang["common_position"] = "Posición";
|
||||
$lang["common_people"] = "Personas";
|
||||
$lang["common_manager"] = "Administrador";
|
||||
$lang["common_fields_required_message_unique"] = "Los campos en rojo son obligatorios y deben ser únicos";
|
||||
$lang["common_dashboard"] = "Tablero";
|
||||
$lang["common_color"] = "Colores del tema";
|
||||
$lang["common_clerk"] = "Empleado";
|
||||
$lang["common_admin"] = "Administrador";
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["config_address"] = "Dirección del Comercio";
|
||||
$lang["config_address_required"] = "Dirección del Comercio es requerida.";
|
||||
$lang["config_all_set"] = "¡Todos los permisos de archivo están configurados correctamente!";
|
||||
@@ -18,7 +17,7 @@ $lang["config_barcode_generate_if_empty"] = "Generar si esta vacio.";
|
||||
$lang["config_barcode_height"] = "Alto (px)";
|
||||
$lang["config_barcode_id"] = "Id/Artículo";
|
||||
$lang["config_barcode_info"] = "Información de Configuración de Código de Barras";
|
||||
$lang["config_barcode_layout"] = "Presentación Código Barras";
|
||||
$lang["config_barcode_layout"] = "Diseño Código de Barras";
|
||||
$lang["config_barcode_name"] = "Nombre";
|
||||
$lang["config_barcode_number"] = "UPC/EAN/ISBN";
|
||||
$lang["config_barcode_number_in_row"] = "Número en la línea";
|
||||
@@ -74,7 +73,7 @@ $lang["config_default_item_columns"] = "Columnas de Productos Visibles por Defec
|
||||
$lang["config_default_origin_tax_code"] = "Código de impuesto por defecto";
|
||||
$lang["config_default_receivings_discount"] = "Descuento por Defecto para Recibos";
|
||||
$lang["config_default_receivings_discount_number"] = "El Descuento por Defecto Para Los Recibos Debe Ser Un Número.";
|
||||
$lang["config_default_receivings_discount_required"] = "El Descuento Predeterminado para los Recibos es un campo obligatorio.";
|
||||
$lang["config_default_receivings_discount_required"] = "El Descuento Predeterminado para los Recibos es un campo obligatorio.";
|
||||
$lang["config_default_sales_discount"] = "Descuento Predeterminado para Ventas";
|
||||
$lang["config_default_sales_discount_number"] = "Descuento en ventas predeterminado debe ser un número.";
|
||||
$lang["config_default_sales_discount_required"] = "Descuento en ventas predeterminado es requerido.";
|
||||
@@ -127,7 +126,7 @@ $lang["config_financial_year_may"] = "1º de Mayo";
|
||||
$lang["config_financial_year_nov"] = "1º de Noviembre";
|
||||
$lang["config_financial_year_oct"] = "1º de Octubre";
|
||||
$lang["config_financial_year_sep"] = "1º de Septiembre";
|
||||
$lang["config_floating_labels"] = "";
|
||||
$lang["config_floating_labels"] = "Etiquetas flotantes";
|
||||
$lang["config_gcaptcha_enable"] = "Inicio de sesión con reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key"] = "Llave secreta reCAPTCHA";
|
||||
$lang["config_gcaptcha_secret_key_required"] = "reCAPTCHA Secret Key es requerida si se usa";
|
||||
@@ -147,7 +146,7 @@ $lang["config_image_restrictions"] = "Restricciones de carga de imágenes";
|
||||
$lang["config_include_hsn"] = "Incluir Soporte para Códigos HSN";
|
||||
$lang["config_info"] = "Información";
|
||||
$lang["config_info_configuration"] = "Información del Comercio";
|
||||
$lang["config_input_groups"] = "";
|
||||
$lang["config_input_groups"] = "Introducir Grupos";
|
||||
$lang["config_integrations"] = "Componentes Integrados";
|
||||
$lang["config_integrations_configuration"] = "Componentes de Terceros Integrados";
|
||||
$lang["config_invoice"] = "Factura";
|
||||
@@ -158,7 +157,7 @@ $lang["config_invoice_enable"] = "Activar Facturación";
|
||||
$lang["config_invoice_printer"] = "Impresora Facturadora";
|
||||
$lang["config_invoice_type"] = "Tipo de Factura";
|
||||
$lang["config_is_readable"] = "es legible, pero los permisos de lectura son incorrectos. Pongalos en 640 o 660 cargue nuevamente.";
|
||||
$lang["config_is_writable"] = "es grabable, pero los permisos de escritura son incorrectos. Pongalos en 750 y cargue nuevamente.";
|
||||
$lang["config_is_writable"] = "es escribible, pero los permisos de escritura son incorrectos. Pongalos en 750 y recargue la página de nuevo.";
|
||||
$lang["config_jsprintsetup_required"] = "Advertencia!Esta funcionalidad desactivada solo funciona con el addon jsPrintSetup de FireFox instalado. Guardar de todas formas?";
|
||||
$lang["config_language"] = "Idioma";
|
||||
$lang["config_last_used_invoice_number"] = "Último numero de factura utilizado";
|
||||
@@ -177,10 +176,10 @@ $lang["config_locale_info"] = "Informacion de la configuracion de la zona";
|
||||
$lang["config_location"] = "Inventario";
|
||||
$lang["config_location_configuration"] = "Ubicación de Inventario";
|
||||
$lang["config_location_info"] = "Información de Configuración de Ubicación";
|
||||
$lang["config_login_form"] = "";
|
||||
$lang["config_login_form"] = "Estilo del formulario de inicio de sesión";
|
||||
$lang["config_logout"] = "Desea hacer un respaldo antes de salir? Pulsa [OK] para respaldar o [Cancelar] para salir.";
|
||||
$lang["config_mailchimp"] = "Correo Chimp";
|
||||
$lang["config_mailchimp_api_key"] = "Clave de la API Mailchimp";
|
||||
$lang["config_mailchimp"] = "Correo MailChimp";
|
||||
$lang["config_mailchimp_api_key"] = "Clave API de Mailchimp";
|
||||
$lang["config_mailchimp_configuration"] = "Configuración de Mailchimp";
|
||||
$lang["config_mailchimp_key_successfully"] = "Clave API correcta.";
|
||||
$lang["config_mailchimp_key_unsuccessfully"] = "Clave API incorrecta.";
|
||||
@@ -208,7 +207,7 @@ $lang["config_number_locale_tooltip"] = "Encontrar una zonificacion adecuada en
|
||||
$lang["config_os_timezone"] = "Zona Horaria Local:";
|
||||
$lang["config_ospos_info"] = "Información de la Instalación OSPOS";
|
||||
$lang["config_payment_options_order"] = "Orden de opciones de pago";
|
||||
$lang["config_perm_risk"] = "Permisos superiores a 750 dejan este software en riesgo.";
|
||||
$lang["config_perm_risk"] = "Los permisos incorrectos dejan a este software en riesgo.";
|
||||
$lang["config_phone"] = "Teléfono comercial";
|
||||
$lang["config_phone_required"] = "Teléfono del Comercio es requerido.";
|
||||
$lang["config_print_bottom_margin"] = "Margen Inferior";
|
||||
@@ -251,7 +250,7 @@ $lang["config_receipt_show_tax_ind"] = "Mostrar indicador de impuestos";
|
||||
$lang["config_receipt_show_taxes"] = "Mostrar impuestos";
|
||||
$lang["config_receipt_show_total_discount"] = "Mostrar Descuento Total";
|
||||
$lang["config_receipt_template"] = "Formato de recibo";
|
||||
$lang["config_receiving_calculate_average_price"] = "Cal. precio prom. (Recepción)";
|
||||
$lang["config_receiving_calculate_average_price"] = "Cambiar precio de coste. (Recepción)";
|
||||
$lang["config_recv_invoice_format"] = "Formato de Factura de Recepción";
|
||||
$lang["config_register_mode_default"] = "Modo de registro por defecto";
|
||||
$lang["config_report_an_issue"] = "Informe de algún problema";
|
||||
@@ -292,7 +291,7 @@ $lang["config_tax_decimals"] = "Decimales de impuestos";
|
||||
$lang["config_tax_id"] = "Identificador del Impuesto";
|
||||
$lang["config_tax_included"] = "Impuestos incluidos";
|
||||
$lang["config_theme"] = "Tema";
|
||||
$lang["config_theme_preview"] = "";
|
||||
$lang["config_theme_preview"] = "Vista Previa del Tema:";
|
||||
$lang["config_thousands_separator"] = "Separador de miles";
|
||||
$lang["config_timezone"] = "Zona Horaria";
|
||||
$lang["config_timezone_error"] = "La zona horaria de OSPOS es diferente de tu zona horaria local.";
|
||||
@@ -302,3 +301,28 @@ $lang["config_user_timezone"] = "Zona Horaria OSPOS:";
|
||||
$lang["config_website"] = "Sitio Web";
|
||||
$lang["config_work_order_enable"] = "Soporte Ordenes de Trabajo";
|
||||
$lang["config_work_order_format"] = "Formato Ordenes de trabajo";
|
||||
$lang['config_wholesale_markup'] = "Marcado al por mayor";
|
||||
$lang["config_suggestions_fifth_column"] = "Columna 5";
|
||||
$lang["config_suggestions_fourth_column"] = "Columna 4";
|
||||
$lang["config_show_due_enable"] = "Mostrar vencimientos de clientes";
|
||||
$lang["config_service_charge"] = "Costo de Servicio";
|
||||
$lang["config_receipt_category"] = "Recibo con categoría";
|
||||
$lang["config_item_markup"] = "Marcado de Artículo";
|
||||
$lang['config_enable_avatar_tooltip'] = "Habilitar Avatares para que se muestren en el menú desplegable Categorías y Registrarse ";
|
||||
$lang['config_enable_avatar'] = "Habilitar Avatar";
|
||||
$lang['config_enable_right_bar_tooltip'] = "Cambiar la barra lateral de izquierda a derecha ";
|
||||
$lang['config_enable_right_bar'] = " Habilitar la barra lateral derecha";
|
||||
$lang['config_enable_new_look'] = "Habilitar nueva apariencia";
|
||||
$lang["config_enable_dropdown_tooltip"] = "No podrá agregar nuevas categorías si esto está marcado";
|
||||
$lang["config_default_tax_rate_3"] = "Tasa de Impuestos 3";
|
||||
$lang["config_current_employee_only"] = "Mostrar registro sólo del empleado actual";
|
||||
$lang["config_company_avatar"] = "Avatar de Empleado";
|
||||
$lang["config_change_apperance_tooltip"] = "Cambiar Aspecto de OSPOS";
|
||||
$lang["config_quick_cash_enable"] = "Activar Botones de Efectivo";
|
||||
$lang["config_cash_button_6"] = "Botón 6";
|
||||
$lang["config_cash_button_5"] = "Botón 5";
|
||||
$lang["config_cash_button_4"] = "Botón 4";
|
||||
$lang["config_cash_button_3"] = "Botón 3";
|
||||
$lang["config_cash_button_2"] = "Botón 2";
|
||||
$lang["config_cash_button_1"] = "Botón 1";
|
||||
$lang["config_cash_button"] = "Botones de Efectivo Rápido";
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["customers_account_number"] = "Cuenta #";
|
||||
$lang["customers_account_number_duplicate"] = "Este número de cuenta ya esta en la base de datos.";
|
||||
$lang["customers_available_points"] = "Puntos disponibles";
|
||||
$lang["customers_available_points"] = "Puntos Disponibles";
|
||||
$lang["customers_average"] = "Gasto promedio";
|
||||
$lang["customers_avg_discount"] = "Descuento promedio";
|
||||
$lang["customers_basic_information"] = "Información";
|
||||
@@ -32,7 +31,7 @@ $lang["customers_mailchimp_activity_open"] = "Correo abierto";
|
||||
$lang["customers_mailchimp_activity_total"] = "Correo enviado";
|
||||
$lang["customers_mailchimp_activity_unopen"] = "Correo sin abrir";
|
||||
$lang["customers_mailchimp_email_client"] = "Correo del cliente";
|
||||
$lang["customers_mailchimp_info"] = "Mail chimp";
|
||||
$lang["customers_mailchimp_info"] = "Correo Mailchimp";
|
||||
$lang["customers_mailchimp_member_rating"] = "Porcentaje";
|
||||
$lang["customers_mailchimp_status"] = "Estado";
|
||||
$lang["customers_mailchimp_vip"] = "VIP";
|
||||
@@ -52,3 +51,4 @@ $lang["customers_taxable"] = "Gravable";
|
||||
$lang["customers_total"] = "Total";
|
||||
$lang["customers_update"] = "Actualizar Cliente";
|
||||
$lang["rewards_package"] = "Paquete de premios";
|
||||
$lang["customers_available_points_value"] = "Puntos Disponibles";
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["employees_basic_information"] = "Información Básica de Empleados";
|
||||
$lang["employees_cannot_be_deleted"] = "No se pudieron borrar empleados. Uno o más empleados tiene ventas procesadas o estás tratando de borrarte a tí mismo(a).";
|
||||
$lang["employees_change_password"] = "Cambiar Contraseña";
|
||||
@@ -35,3 +34,9 @@ $lang["employees_update"] = "Actualizar Empleado";
|
||||
$lang["employees_username"] = "Usuario";
|
||||
$lang["employees_username_minlength"] = "El nombre de usuario debe ser por lo menos, 5 caracteres.";
|
||||
$lang["employees_username_required"] = "Nombre de usuario es requerido.";
|
||||
$lang["employees_manager"] = "Encargado";
|
||||
$lang["employees_username_duplicate"] = "Nombre de Usuario de Empleado yá está en uso. Por favor escoja otro.";
|
||||
$lang["employees_commission"] = "Tasa de Comisión";
|
||||
$lang["employees_clerk"] = "Empleado";
|
||||
$lang["employees_change_employee"] = "Cambio de Empleado";
|
||||
$lang["employees_administrator"] = "Administrador";
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["expenses_add_item"] = "Agregar Gasto";
|
||||
$lang["expenses_amount"] = "Monto";
|
||||
$lang["expenses_amount_number"] = "Monto debe ser numerico";
|
||||
@@ -12,8 +11,8 @@ $lang["expenses_categories_name"] = "Categoria";
|
||||
$lang["expenses_category_required"] = "categoria es un campo requerido";
|
||||
$lang["expenses_check"] = "Cheque";
|
||||
$lang["expenses_check_filter"] = "Cheque";
|
||||
$lang["expenses_confirm_delete"] = "¿Esta seguro de querer borrar los gastos seleccionados?";
|
||||
$lang["expenses_confirm_restore"] = "¿Esta seguro de querer recuperar los gastos seleccionados?";
|
||||
$lang["expenses_confirm_delete"] = "¿Esta seguro que quiere borrar (el)los gasto(s) seleccionado(s)?";
|
||||
$lang["expenses_confirm_restore"] = "¿Está seguro que quiere restaurar (el)los gasto(s) seleccionado(s)?";
|
||||
$lang["expenses_credit"] = "Tarjeta Credito";
|
||||
$lang["expenses_credit_filter"] = "Tarjeta Credito";
|
||||
$lang["expenses_date"] = "Fecha";
|
||||
@@ -44,3 +43,6 @@ $lang["expenses_supplier_name"] = "Proveedor";
|
||||
$lang["expenses_supplier_tax_code"] = "Codigo Imp";
|
||||
$lang["expenses_tax_amount"] = "Imp";
|
||||
$lang["expenses_update"] = "Actualizar Gasto";
|
||||
$lang["expenses_tax_amount_number"] = "Número de Importe de Impuestos";
|
||||
$lang["expenses_new_supplier"] = "Nuevo Proveedor";
|
||||
$lang["expenses_ip_address"] = "Dirección IP";
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["item_kits_add_item"] = "Agregar Artículo";
|
||||
$lang["item_kits_all"] = "Todo";
|
||||
$lang["item_kits_cannot_be_deleted"] = "Borrado de Kit(s) de Artículos fallido.";
|
||||
@@ -36,3 +35,5 @@ $lang["item_kits_successful_adding"] = "Has agregado satisfactoriamente un Kit d
|
||||
$lang["item_kits_successful_deleted"] = "Has borrado satisfactoriamente";
|
||||
$lang["item_kits_successful_updating"] = "Has actualizado satisfactoriamente un Kit de Artículos";
|
||||
$lang["item_kits_update"] = "Actualizar Kit de Artículos";
|
||||
$lang["item_kits_unit_price"] = "Precio Unitario";
|
||||
$lang["item_kits_item_kit_number_duplicate"] = "El Número del Kit de Artículo yá está presente en la base de datos.";
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["items_add_minus"] = "Inventario a agregar/substraer.";
|
||||
$lang["items_allow_alt_description"] = "Permitir Descripción Alternativa";
|
||||
$lang["items_amount_entry"] = "Monto entrada";
|
||||
@@ -18,9 +17,9 @@ $lang["items_confirm_bulk_edit"] = "¿Estás seguro(a) de querer editar los art
|
||||
$lang["items_confirm_bulk_edit_wipe_taxes"] = "Toda la información de impuesto del articulo sera cambiada.";
|
||||
$lang["items_confirm_delete"] = "¿Estás seguro(a) de querer borrar los artículos seleccionados?";
|
||||
$lang["items_confirm_restore"] = "Esta seguro de querer restaurar lo(s) articulo(s) seleccionada(s)?";
|
||||
$lang["items_cost_price"] = "Precio de Compra";
|
||||
$lang["items_cost_price_number"] = "Precio de Compra debe ser número.";
|
||||
$lang["items_cost_price_required"] = "Precio de Compra es requerido.";
|
||||
$lang["items_cost_price"] = "Precio de Costo";
|
||||
$lang["items_cost_price_number"] = "Precio de Costo debe ser un número.";
|
||||
$lang["items_cost_price_required"] = "Precio de Costo es requerido.";
|
||||
$lang["items_count"] = "Actualizar Inventario";
|
||||
$lang["items_csv_import_failed"] = "Falló la importación de Hoja de Cálculo";
|
||||
$lang["items_csv_import_nodata_wrongformat"] = "El archivo subido no tiene datos o el formato es incorrecto.";
|
||||
@@ -68,7 +67,7 @@ $lang["items_none"] = "Ninguno";
|
||||
$lang["items_none_selected"] = "No has seleccionado artículos para editar";
|
||||
$lang["items_nonstock"] = "Sin stock";
|
||||
$lang["items_number_information"] = "Número del Artículo";
|
||||
$lang["items_number_required"] = "UPC/EAN/ISBN es requerido.";
|
||||
$lang["items_number_required"] = "UPC/EAN/ISBN es requerido";
|
||||
$lang["items_one_or_multiple"] = "articulo(s)";
|
||||
$lang["items_pack_name"] = "Nombre del Paquete";
|
||||
$lang["items_qty_per_pack"] = "Cantidad por Paquete";
|
||||
@@ -80,11 +79,11 @@ $lang["items_remove_image"] = "Quitar Imagen";
|
||||
$lang["items_reorder_level"] = "Cantidad Mínima";
|
||||
$lang["items_reorder_level_number"] = "Cantidad Mínima debe ser número.";
|
||||
$lang["items_reorder_level_required"] = "Cantidad Mínima es requerido.";
|
||||
$lang["items_retrive_item_info"] = "Obtener Info de Artículo";
|
||||
$lang["items_retrive_item_info"] = "Obtener Información de Artículo";
|
||||
$lang["items_sales_tax_1"] = "Impuesto de Ventas 1";
|
||||
$lang["items_sales_tax_2"] = "Impuesto de Ventas 2";
|
||||
$lang["items_search_attributes"] = "Atributos de búsqueda";
|
||||
$lang["items_select_image"] = "Seleccionar Imagen";
|
||||
$lang["items_search_attributes"] = "Atributos de búsqueda. Formato de fecha Y-m-d";
|
||||
$lang["items_select_image"] = "Seleccionar Imagen";
|
||||
$lang["items_serialized_items"] = "Artículos Serializados";
|
||||
$lang["items_standard"] = "Estándar";
|
||||
$lang["items_stock"] = "Existencia";
|
||||
@@ -110,3 +109,10 @@ $lang["items_unit_price_required"] = "Precio de Venta es requerido.";
|
||||
$lang["items_upc_database"] = "Base de datos UPC";
|
||||
$lang["items_update"] = "Actualizar Artículo";
|
||||
$lang["items_use_inventory_menu"] = "Usar Menú de Inventario";
|
||||
$lang["items_markup"] = "El marcado de elementos está habilitado";
|
||||
$lang["items_tax_3"] = "Impuestos 3";
|
||||
$lang["items_item_id"] = "Id del Artículo";
|
||||
$lang["items_is_printed"] = "No impreso";
|
||||
$lang["items_edit"] = "Editar";
|
||||
$lang["items_categories"] = "Categorías. Seleccione el número de artículo.";
|
||||
$lang["items_category_new"] = "Nueva Categoría";
|
||||
|
||||
@@ -1,13 +1,12 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["login_gcaptcha"] = "No soy un robot.";
|
||||
$lang["login_go"] = "Ir";
|
||||
$lang["login_invalid_gcaptcha"] = "Inválido, no soy un robot.";
|
||||
$lang["login_invalid_gcaptcha"] = "Por favor verifique si usted no es un robot.";
|
||||
$lang["login_invalid_installation"] = "La instalación no es correcta, comprueba el fichero php.ini.";
|
||||
$lang["login_invalid_username_and_password"] = "Usuario o Contraseña no válidos.";
|
||||
$lang["login_invalid_username_and_password"] = "Usuario y/o Contraseña no validos.";
|
||||
$lang["login_login"] = "Iniciar Sesión";
|
||||
$lang["login_logout"] = "";
|
||||
$lang["login_migration_needed"] = "";
|
||||
$lang["login_logout"] = "Cerrar sesión";
|
||||
$lang["login_migration_needed"] = "La migración de la base de datos a %1 se iniciará después del inicio de sesión.";
|
||||
$lang["login_password"] = "Contraseña";
|
||||
$lang["login_username"] = "Usuario";
|
||||
$lang["login_welcome"] = "";
|
||||
$lang["login_welcome"] = "Bienvenido a %1!";
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["module_attributes"] = "Atributos";
|
||||
$lang["module_attributes_desc"] = "Agregar, Actualizar, Eliminar y Buscar atributos.";
|
||||
$lang["module_both"] = "Ambos";
|
||||
$lang["module_cashups"] = "Turnos";
|
||||
$lang["module_cashups"] = "Día de apertura o Cierre";
|
||||
$lang["module_cashups_desc"] = "Agregar, Actualizar, Borrar y Buscar Turnos.";
|
||||
$lang["module_config"] = "Configuración de la Tienda";
|
||||
$lang["module_config_desc"] = "Cambiar la configuración de OSPOS.";
|
||||
@@ -39,3 +38,9 @@ $lang["module_suppliers"] = "Proveedores";
|
||||
$lang["module_suppliers_desc"] = "Agregar, Actualizar, Borrar y Buscar Proveedores.";
|
||||
$lang["module_taxes"] = "Impuestos";
|
||||
$lang["module_taxes_desc"] = "Configurar Impuestos de Ventas.";
|
||||
$lang["module_timeclocks_categories_desc"] = "Agregar, Actualizar, Borrar, y buscar Reloj de Registro de Categorías";
|
||||
$lang["module_timeclocks_categories"] = "Reloj de Registro de Categorías";
|
||||
$lang["module_timeclocks_desc"] = "Reloj de Registro.";
|
||||
$lang["module_timeclocks"] = "Reloj de Registro";
|
||||
$lang["module_admin_cashups_desc"] = "Administrador de retiro";
|
||||
$lang["module_admin_cashups"] = "Administrador de retiro";
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["receivings_cancel_receiving"] = "Cancelar";
|
||||
$lang["receivings_cannot_be_deleted"] = "Ingreso(s) no se borraron.";
|
||||
$lang["receivings_comments"] = "Comentarios";
|
||||
@@ -34,7 +33,7 @@ $lang["receivings_reference"] = "Referencia";
|
||||
$lang["receivings_register"] = "Entrada de Artículos";
|
||||
$lang["receivings_requisition"] = "Requisición";
|
||||
$lang["receivings_return"] = "Devolver";
|
||||
$lang["receivings_select_supplier"] = "Seleccionar Proveedor (Opcional)";
|
||||
$lang["receivings_select_supplier"] = "Seleccionar Proveedor (Requerido)";
|
||||
$lang["receivings_ship_pack"] = "Paquete de Envío";
|
||||
$lang["receivings_start_typing_supplier_name"] = "Empieza a escribir el nombre del proveedor...";
|
||||
$lang["receivings_stock"] = "Inventario";
|
||||
@@ -52,3 +51,6 @@ $lang["receivings_transaction_failed"] = "La(s) Transaccion(es) de Entrada Falla
|
||||
$lang["receivings_unable_to_add_item"] = "No se pudo agregar el artículo.";
|
||||
$lang["receivings_unsuccessfully_updated"] = "Actualizacion de Recepción fallida.";
|
||||
$lang["receivings_update"] = "Editar";
|
||||
$lang["receivings_daily"] = "Recepción Diaria";
|
||||
$lang["receivings_confirm_restore"] = "Seguro que quiere restaurar esta recepción? Éste será restaurado.";
|
||||
$lang["receivings_amount_due"] = "Importe Adeudado";
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["reports_all"] = "Todo";
|
||||
$lang["reports_authority"] = "Autorización";
|
||||
$lang["reports_canceled"] = "Cancelado";
|
||||
@@ -110,7 +109,7 @@ $lang["reports_sold_to"] = "Vendido A";
|
||||
$lang["reports_stock_location"] = "Ubicación de Inventario";
|
||||
$lang["reports_sub_total_value"] = "SubTotal";
|
||||
$lang["reports_subtotal"] = "Sub-total";
|
||||
$lang["reports_summary_reports"] = "Reportes Resumidos";
|
||||
$lang["reports_summary_reports"] = "Reportes Resumidos de Ventas";
|
||||
$lang["reports_supplied_by"] = "Provisto por";
|
||||
$lang["reports_supplier"] = "Proveedor";
|
||||
$lang["reports_suppliers"] = "Proveedores";
|
||||
@@ -139,3 +138,9 @@ $lang["reports_unit_price"] = "Precio de Venta";
|
||||
$lang["reports_used"] = "Puntos usados";
|
||||
$lang["reports_work_orders"] = "Ordenes";
|
||||
$lang["reports_zero_and_less"] = "Cero y negativos";
|
||||
$lang["reports_tax_name"] = "Nombres de Impuestos";
|
||||
$lang["reports_sold_items"] = "Artículos Vendidos";
|
||||
$lang["reports_service_charge"] = "Costo de Servicio";
|
||||
$lang["reports_expenses_payment_amount"] = "Pago";
|
||||
$lang["reports_detailed_receivings_report_input"] = "Entrada detallada del reporte de recepción";
|
||||
$lang["reports_commission"] = "Comisión";
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["customers_available_points"] = "Puntos disponibles";
|
||||
$lang["rewards_package"] = "Premios";
|
||||
$lang["rewards_remaining_balance"] = "El remanente de puntos es ";
|
||||
@@ -10,7 +9,7 @@ $lang["sales_amount_tendered"] = "Cantidad Recibida";
|
||||
$lang["sales_authorized_signature"] = "Firma Autorizada";
|
||||
$lang["sales_cancel_sale"] = "Cancelar Venta";
|
||||
$lang["sales_cash"] = "Efectivo";
|
||||
$lang["sales_cash_adjustment"] = "";
|
||||
$lang["sales_cash_adjustment"] = "Ajuste de Efectivo";
|
||||
$lang["sales_cash_deposit"] = "Deposito Efectivo";
|
||||
$lang["sales_cash_filter"] = "Efectivo";
|
||||
$lang["sales_change_due"] = "Cambio";
|
||||
@@ -113,7 +112,7 @@ $lang["sales_price"] = "Precio";
|
||||
$lang["sales_print_after_sale"] = "Imprimir recibo después de una venta";
|
||||
$lang["sales_quantity"] = "Cantidad";
|
||||
$lang["sales_quantity_less_than_reorder_level"] = "Advertencia. La cantidad deseada es insuficiente.";
|
||||
$lang["sales_quantity_less_than_zero"] = "Advertencia. La cantidad deseada es insuficiente. Puedes procesar la venta pero verifica el inventario.";
|
||||
$lang["sales_quantity_less_than_zero"] = "Advertencia. La cantidad deseada está agotada en stock. Puedes procesar la venta pero audita el inventario.";
|
||||
$lang["sales_quantity_of_items"] = "Cantidad de %1 articulos";
|
||||
$lang["sales_quote"] = "Cotizar";
|
||||
$lang["sales_quote_number"] = "Número de Presupuesto";
|
||||
@@ -167,7 +166,7 @@ $lang["sales_taxed_ind"] = "Ventas gravadas";
|
||||
$lang["sales_total"] = "Total";
|
||||
$lang["sales_total_tax_exclusive"] = "Sin impuesto";
|
||||
$lang["sales_transaction_failed"] = "La transacción de venta falló.";
|
||||
$lang["sales_unable_to_add_item"] = "No se puede agregar el artículo a la venta";
|
||||
$lang["sales_unable_to_add_item"] = "Error al agregar artículo a la venta. Agotado";
|
||||
$lang["sales_unsuccessfully_deleted"] = "Ha fallado la eliminación de la Venta.";
|
||||
$lang["sales_unsuccessfully_restored"] = "Restaurar Venta fallida.";
|
||||
$lang["sales_unsuccessfully_suspended_sale"] = "Venta suspendida satisfactoriamente.";
|
||||
@@ -181,3 +180,22 @@ $lang["sales_work_order_number"] = "Numero Orden Trabajo";
|
||||
$lang["sales_work_order_number_duplicate"] = "El numero de orden de trabajo debe ser unico.";
|
||||
$lang["sales_work_order_sent"] = "Orden de trabajo enviada a";
|
||||
$lang["sales_work_order_unsent"] = "Orden de trabajo fallida al enviar a";
|
||||
$lang["sales_wholesale"] = "Precio al por mayor";
|
||||
$lang["sales_visa"] = "Tarjeta Visa";
|
||||
$lang["sales_sales_total"] = "Ventas Totales";
|
||||
$lang["sales_show_due"] = "Mostrar los Importes Adeudados";
|
||||
$lang["sales_service_charge"] = "Costo de Servicio";
|
||||
$lang["sales_remove_discount"] = "Descuentos";
|
||||
$lang["sales_payments"] = "Pagos";
|
||||
$lang["sales_mc"] = "Tarjeta Master Card";
|
||||
$lang["sales_giftcard_filter"] = "Tarjeta de Regalo";
|
||||
$lang['sales_daily_sales'] = "Sus Ventas Diarias";
|
||||
$lang["sales_customer_total_spent"] = "Total Gastado";
|
||||
$lang["sales_current_table"] = "Tabla Actual";
|
||||
$lang["sales_complete"] = "Completa";
|
||||
$lang["sales_company_name"] = "Nombre de Comañía";
|
||||
$lang["sales_close"] = "Cerrar Lista";
|
||||
$lang["sales_cash_4"] = "20";
|
||||
$lang["sales_cash_3"] = "10";
|
||||
$lang["sales_cash_2"] = "5";
|
||||
$lang["sales_cash_1"] = "1";
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["taxes_add_exception"] = "Añadir excepción";
|
||||
$lang["taxes_cascade"] = "Cascada";
|
||||
$lang["taxes_cascade_sequence"] = "Secuencia en cascada";
|
||||
@@ -78,3 +77,4 @@ $lang["taxes_tax_rounding"] = "Redondeo de Impuestos";
|
||||
$lang["taxes_tax_type"] = "Tipo de Impuesto";
|
||||
$lang["taxes_update"] = "Actualizar Tasa de Impuesto";
|
||||
$lang["taxes_vat_tax"] = "IVA";
|
||||
$lang["taxes_no_taxes"] = "Sin Importe de Impuestos";
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
$lang["items_add_minus"] = "";
|
||||
$lang["items_allow_alt_description"] = "";
|
||||
$lang["items_amount_entry"] = "";
|
||||
@@ -7,17 +6,17 @@ $lang["items_bulk_edit"] = "";
|
||||
$lang["items_buy_price_required"] = "";
|
||||
$lang["items_cannot_be_deleted"] = "";
|
||||
$lang["items_cannot_find_item"] = "";
|
||||
$lang["items_category"] = "";
|
||||
$lang["items_category_required"] = "";
|
||||
$lang["items_change_all_to_allow_alt_desc"] = "";
|
||||
$lang["items_change_all_to_not_allow_allow_desc"] = "";
|
||||
$lang["items_category"] = "Categorie";
|
||||
$lang["items_category_required"] = "Campul Categorie este obligatoriu.";
|
||||
$lang["items_change_all_to_allow_alt_desc"] = "Permite descriere alternativa pentru tot.";
|
||||
$lang["items_change_all_to_not_allow_allow_desc"] = "Nu permite descriere alternativa pentru tot.";
|
||||
$lang["items_change_all_to_serialized"] = "";
|
||||
$lang["items_change_all_to_unserialized"] = "";
|
||||
$lang["items_change_image"] = "";
|
||||
$lang["items_confirm_bulk_edit"] = "";
|
||||
$lang["items_confirm_bulk_edit_wipe_taxes"] = "";
|
||||
$lang["items_confirm_delete"] = "";
|
||||
$lang["items_confirm_restore"] = "";
|
||||
$lang["items_change_image"] = "Schimbare imagine";
|
||||
$lang["items_confirm_bulk_edit"] = "Sigur doriti editarea produsului/produselor selectate?";
|
||||
$lang["items_confirm_bulk_edit_wipe_taxes"] = "Toate informatiile cu privire la taxe, vor fi inlocuite.";
|
||||
$lang["items_confirm_delete"] = "Sigur doriti stergerea produselor selectate?";
|
||||
$lang["items_confirm_restore"] = "Sigur doriti restaurarea produselor selectate?";
|
||||
$lang["items_cost_price"] = "";
|
||||
$lang["items_cost_price_number"] = "";
|
||||
$lang["items_cost_price_required"] = "";
|
||||
@@ -110,3 +109,5 @@ $lang["items_unit_price_required"] = "";
|
||||
$lang["items_upc_database"] = "";
|
||||
$lang["items_update"] = "";
|
||||
$lang["items_use_inventory_menu"] = "";
|
||||
$lang["items_categories"] = "Categorii - selectare numar produs.";
|
||||
$lang["items_category_new"] = "Categorie noua";
|
||||
|
||||
@@ -10,7 +10,7 @@ class Summary_items extends Summary_report
|
||||
array('item_name' => $this->lang->line('reports_item')),
|
||||
array('category' => $this->lang->line('reports_category')),
|
||||
array('unit_price' => $this->lang->line('reports_unit_price'), 'sorter' => 'number_sorter'),
|
||||
array('quantity' => $this->lang->line('reports_quantity')),
|
||||
array('quantity' => $this->lang->line('reports_quantity'), 'sorter' => 'number_sorter'),
|
||||
array('subtotal' => $this->lang->line('reports_subtotal'), 'sorter' => 'number_sorter'),
|
||||
array('tax' => $this->lang->line('reports_tax'), 'sorter' => 'number_sorter'),
|
||||
array('total' => $this->lang->line('reports_total'), 'sorter' => 'number_sorter'),
|
||||
|
||||
@@ -8,7 +8,7 @@ class Summary_taxes extends Summary_report
|
||||
{
|
||||
return array(
|
||||
array('tax_percent' => $this->lang->line('reports_tax_percent'), 'sorter' => 'number_sorter'),
|
||||
array('report_count' => $this->lang->line('reports_sales')),
|
||||
array('report_count' => $this->lang->line('reports_sales'), 'sorter' => 'number_sorter'),
|
||||
array('subtotal' => $this->lang->line('reports_subtotal'), 'sorter' => 'number_sorter'),
|
||||
array('tax' => $this->lang->line('reports_tax'), 'sorter' => 'number_sorter'),
|
||||
array('total' => $this->lang->line('reports_total'), 'sorter' => 'number_sorter'));
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "opensourcepos",
|
||||
"description": "Open Source Point of Sale is a web based POS system written in the PHP language. It uses MySQL as backend and has a simple user interface",
|
||||
"version": "3.4.0",
|
||||
"version": "3.3.5",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
"jekkos <jekkos - at - opensourcepos.org>",
|
||||
|
||||
@@ -22,8 +22,7 @@
|
||||
"dompdf/dompdf": "^0.8.5",
|
||||
"tamtamchik/namecase": "^1.0",
|
||||
"paragonie/random_compat": "^2.0",
|
||||
"vlucas/phpdotenv": "^2.4",
|
||||
"eventsauce/eventsauce": "^0.8.2"
|
||||
"vlucas/phpdotenv": "^2.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"mikey179/vfsstream": "1.1.*",
|
||||
|
||||
635
composer.lock
generated
635
composer.lock
generated
@@ -4,64 +4,8 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "927023ac824f2a8745cb8d1dc496bf05",
|
||||
"content-hash": "39829ee57ca769cd2030341ad186fbe7",
|
||||
"packages": [
|
||||
{
|
||||
"name": "brick/math",
|
||||
"version": "0.9.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/brick/math.git",
|
||||
"reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
|
||||
"reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-json": "*",
|
||||
"php": "^7.1 || ^8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"php-coveralls/php-coveralls": "^2.2",
|
||||
"phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
|
||||
"vimeo/psalm": "4.3.2"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Brick\\Math\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"description": "Arbitrary-precision arithmetic library",
|
||||
"keywords": [
|
||||
"Arbitrary-precision",
|
||||
"BigInteger",
|
||||
"BigRational",
|
||||
"arithmetic",
|
||||
"bigdecimal",
|
||||
"bignum",
|
||||
"brick",
|
||||
"math"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/brick/math/issues",
|
||||
"source": "https://github.com/brick/math/tree/0.9.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/brick/math",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2021-01-20T22:51:39+00:00"
|
||||
},
|
||||
{
|
||||
"name": "codeigniter/framework",
|
||||
"version": "3.1.11",
|
||||
@@ -174,71 +118,18 @@
|
||||
},
|
||||
"time": "2020-08-30T22:54:22+00:00"
|
||||
},
|
||||
{
|
||||
"name": "eventsauce/eventsauce",
|
||||
"version": "0.8.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/EventSaucePHP/EventSauce.git",
|
||||
"reference": "3c413662af7e37c7a2ca4fd2b1cfe9365a7b6dae"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/EventSaucePHP/EventSauce/zipball/3c413662af7e37c7a2ca4fd2b1cfe9365a7b6dae",
|
||||
"reference": "3c413662af7e37c7a2ca4fd2b1cfe9365a7b6dae",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.2|^8.0",
|
||||
"ramsey/uuid": "^3|^4",
|
||||
"symfony/yaml": "^3.2|^4.0|^5.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"friendsofphp/php-cs-fixer": "^2.15",
|
||||
"phpstan/phpstan": "^0.11.16|^0.12.52",
|
||||
"phpunit/phpunit": "^7.0|^8.0|^9.3"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"EventSauce\\EventSourcing\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Frank de Jonge",
|
||||
"email": "info@frenky.net"
|
||||
}
|
||||
],
|
||||
"description": "Event sourcing library.",
|
||||
"support": {
|
||||
"issues": "https://github.com/EventSaucePHP/EventSauce/issues",
|
||||
"source": "https://github.com/EventSaucePHP/EventSauce/tree/0.8.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/frankdejonge",
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2020-11-01T15:25:34+00:00"
|
||||
},
|
||||
{
|
||||
"name": "paragonie/random_compat",
|
||||
"version": "v2.0.20",
|
||||
"version": "v2.0.19",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/paragonie/random_compat.git",
|
||||
"reference": "0f1f60250fccffeaf5dda91eea1c018aed1adc2a"
|
||||
"reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/paragonie/random_compat/zipball/0f1f60250fccffeaf5dda91eea1c018aed1adc2a",
|
||||
"reference": "0f1f60250fccffeaf5dda91eea1c018aed1adc2a",
|
||||
"url": "https://api.github.com/repos/paragonie/random_compat/zipball/446fc9faa5c2a9ddf65eb7121c0af7e857295241",
|
||||
"reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -279,7 +170,7 @@
|
||||
"issues": "https://github.com/paragonie/random_compat/issues",
|
||||
"source": "https://github.com/paragonie/random_compat"
|
||||
},
|
||||
"time": "2021-04-17T09:33:01+00:00"
|
||||
"time": "2020-10-15T10:06:57+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phenx/php-font-lib",
|
||||
@@ -366,182 +257,6 @@
|
||||
},
|
||||
"time": "2019-09-11T20:02:13+00:00"
|
||||
},
|
||||
{
|
||||
"name": "ramsey/collection",
|
||||
"version": "1.2.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ramsey/collection.git",
|
||||
"reference": "eaca1dc1054ddd10cbd83c1461907bee6fb528fa"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/ramsey/collection/zipball/eaca1dc1054ddd10cbd83c1461907bee6fb528fa",
|
||||
"reference": "eaca1dc1054ddd10cbd83c1461907bee6fb528fa",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.3 || ^8",
|
||||
"symfony/polyfill-php81": "^1.23"
|
||||
},
|
||||
"require-dev": {
|
||||
"captainhook/captainhook": "^5.3",
|
||||
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
|
||||
"ergebnis/composer-normalize": "^2.6",
|
||||
"fakerphp/faker": "^1.5",
|
||||
"hamcrest/hamcrest-php": "^2",
|
||||
"jangregor/phpstan-prophecy": "^0.8",
|
||||
"mockery/mockery": "^1.3",
|
||||
"phpspec/prophecy-phpunit": "^2.0",
|
||||
"phpstan/extension-installer": "^1",
|
||||
"phpstan/phpstan": "^0.12.32",
|
||||
"phpstan/phpstan-mockery": "^0.12.5",
|
||||
"phpstan/phpstan-phpunit": "^0.12.11",
|
||||
"phpunit/phpunit": "^8.5 || ^9",
|
||||
"psy/psysh": "^0.10.4",
|
||||
"slevomat/coding-standard": "^6.3",
|
||||
"squizlabs/php_codesniffer": "^3.5",
|
||||
"vimeo/psalm": "^4.4"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Ramsey\\Collection\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Ben Ramsey",
|
||||
"email": "ben@benramsey.com",
|
||||
"homepage": "https://benramsey.com"
|
||||
}
|
||||
],
|
||||
"description": "A PHP library for representing and manipulating collections.",
|
||||
"keywords": [
|
||||
"array",
|
||||
"collection",
|
||||
"hash",
|
||||
"map",
|
||||
"queue",
|
||||
"set"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/ramsey/collection/issues",
|
||||
"source": "https://github.com/ramsey/collection/tree/1.2.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/ramsey",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2021-08-06T03:41:06+00:00"
|
||||
},
|
||||
{
|
||||
"name": "ramsey/uuid",
|
||||
"version": "4.2.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ramsey/uuid.git",
|
||||
"reference": "7231612a5221f5524d3575bebdce20eeef8547a1"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/ramsey/uuid/zipball/7231612a5221f5524d3575bebdce20eeef8547a1",
|
||||
"reference": "7231612a5221f5524d3575bebdce20eeef8547a1",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"brick/math": "^0.8 || ^0.9",
|
||||
"ext-json": "*",
|
||||
"php": "^7.2 || ^8",
|
||||
"ramsey/collection": "^1.0",
|
||||
"symfony/polyfill-ctype": "^1.8"
|
||||
},
|
||||
"replace": {
|
||||
"rhumsaa/uuid": "self.version"
|
||||
},
|
||||
"require-dev": {
|
||||
"captainhook/captainhook": "^5.10",
|
||||
"captainhook/plugin-composer": "^5.3",
|
||||
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
|
||||
"doctrine/annotations": "^1.8",
|
||||
"ergebnis/composer-normalize": "^2.15",
|
||||
"mockery/mockery": "^1.3",
|
||||
"moontoast/math": "^1.1",
|
||||
"paragonie/random-lib": "^2",
|
||||
"php-mock/php-mock": "^2.2",
|
||||
"php-mock/php-mock-mockery": "^1.3",
|
||||
"php-parallel-lint/php-parallel-lint": "^1.1",
|
||||
"phpbench/phpbench": "^1.0",
|
||||
"phpstan/extension-installer": "^1.0",
|
||||
"phpstan/phpstan": "^0.12",
|
||||
"phpstan/phpstan-mockery": "^0.12",
|
||||
"phpstan/phpstan-phpunit": "^0.12",
|
||||
"phpunit/phpunit": "^8.5 || ^9",
|
||||
"slevomat/coding-standard": "^7.0",
|
||||
"squizlabs/php_codesniffer": "^3.5",
|
||||
"vimeo/psalm": "^4.9"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
|
||||
"ext-ctype": "Enables faster processing of character classification using ctype functions.",
|
||||
"ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
|
||||
"ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
|
||||
"paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
|
||||
"ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "4.x-dev"
|
||||
},
|
||||
"captainhook": {
|
||||
"force-install": true
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Ramsey\\Uuid\\": "src/"
|
||||
},
|
||||
"files": [
|
||||
"src/functions.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
|
||||
"keywords": [
|
||||
"guid",
|
||||
"identifier",
|
||||
"uuid"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/ramsey/uuid/issues",
|
||||
"source": "https://github.com/ramsey/uuid/tree/4.2.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/ramsey",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2021-08-06T22:30:43+00:00"
|
||||
},
|
||||
{
|
||||
"name": "sabberworm/php-css-parser",
|
||||
"version": "8.3.1",
|
||||
@@ -591,85 +306,18 @@
|
||||
},
|
||||
"time": "2020-06-01T09:10:00+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/deprecation-contracts",
|
||||
"version": "v2.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/deprecation-contracts.git",
|
||||
"reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
|
||||
"reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "2.4-dev"
|
||||
},
|
||||
"thanks": {
|
||||
"name": "symfony/contracts",
|
||||
"url": "https://github.com/symfony/contracts"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"files": [
|
||||
"function.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Nicolas Grekas",
|
||||
"email": "p@tchwork.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "A generic function and convention to trigger deprecation notices",
|
||||
"homepage": "https://symfony.com",
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2021-03-23T23:28:01+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-ctype",
|
||||
"version": "v1.23.0",
|
||||
"version": "v1.20.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-ctype.git",
|
||||
"reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
|
||||
"reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
|
||||
"reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
|
||||
"reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -681,7 +329,7 @@
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "1.23-dev"
|
||||
"dev-main": "1.20-dev"
|
||||
},
|
||||
"thanks": {
|
||||
"name": "symfony/polyfill",
|
||||
@@ -719,7 +367,7 @@
|
||||
"portable"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
|
||||
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -735,161 +383,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2021-02-19T12:13:01+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-php81",
|
||||
"version": "v1.23.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-php81.git",
|
||||
"reference": "e66119f3de95efc359483f810c4c3e6436279436"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
|
||||
"reference": "e66119f3de95efc359483f810c4c3e6436279436",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "1.23-dev"
|
||||
},
|
||||
"thanks": {
|
||||
"name": "symfony/polyfill",
|
||||
"url": "https://github.com/symfony/polyfill"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Polyfill\\Php81\\": ""
|
||||
},
|
||||
"files": [
|
||||
"bootstrap.php"
|
||||
],
|
||||
"classmap": [
|
||||
"Resources/stubs"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Nicolas Grekas",
|
||||
"email": "p@tchwork.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"compatibility",
|
||||
"polyfill",
|
||||
"portable",
|
||||
"shim"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2021-05-21T13:25:03+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/yaml",
|
||||
"version": "v5.3.6",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/yaml.git",
|
||||
"reference": "4500fe63dc9c6ffc32d3b1cb0448c329f9c814b7"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/yaml/zipball/4500fe63dc9c6ffc32d3b1cb0448c329f9c814b7",
|
||||
"reference": "4500fe63dc9c6ffc32d3b1cb0448c329f9c814b7",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.2.5",
|
||||
"symfony/deprecation-contracts": "^2.1",
|
||||
"symfony/polyfill-ctype": "~1.8"
|
||||
},
|
||||
"conflict": {
|
||||
"symfony/console": "<4.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"symfony/console": "^4.4|^5.0"
|
||||
},
|
||||
"suggest": {
|
||||
"symfony/console": "For validating YAML files using the lint command"
|
||||
},
|
||||
"bin": [
|
||||
"Resources/bin/yaml-lint"
|
||||
],
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\Yaml\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Loads and dumps YAML files",
|
||||
"homepage": "https://symfony.com",
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/yaml/tree/v5.3.6"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2021-07-29T06:20:01+00:00"
|
||||
"time": "2020-10-23T14:02:19+00:00"
|
||||
},
|
||||
{
|
||||
"name": "tamtamchik/namecase",
|
||||
@@ -956,16 +450,16 @@
|
||||
},
|
||||
{
|
||||
"name": "vlucas/phpdotenv",
|
||||
"version": "v2.6.7",
|
||||
"version": "v2.6.6",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/vlucas/phpdotenv.git",
|
||||
"reference": "b786088918a884258c9e3e27405c6a4cf2ee246e"
|
||||
"reference": "e1d57f62db3db00d9139078cbedf262280701479"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/b786088918a884258c9e3e27405c6a4cf2ee246e",
|
||||
"reference": "b786088918a884258c9e3e27405c6a4cf2ee246e",
|
||||
"url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/e1d57f62db3db00d9139078cbedf262280701479",
|
||||
"reference": "e1d57f62db3db00d9139078cbedf262280701479",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -975,7 +469,7 @@
|
||||
"require-dev": {
|
||||
"ext-filter": "*",
|
||||
"ext-pcre": "*",
|
||||
"phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
|
||||
"phpunit/phpunit": "^4.8.35 || ^5.7.27"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-filter": "Required to use the boolean validator.",
|
||||
@@ -1016,7 +510,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/vlucas/phpdotenv/issues",
|
||||
"source": "https://github.com/vlucas/phpdotenv/tree/v2.6.7"
|
||||
"source": "https://github.com/vlucas/phpdotenv/tree/v2.6.6"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -1028,7 +522,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2021-01-20T14:39:13+00:00"
|
||||
"time": "2020-07-14T17:54:18+00:00"
|
||||
}
|
||||
],
|
||||
"packages-dev": [
|
||||
@@ -1245,16 +739,16 @@
|
||||
},
|
||||
{
|
||||
"name": "nikic/php-parser",
|
||||
"version": "v4.12.0",
|
||||
"version": "v4.10.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/nikic/PHP-Parser.git",
|
||||
"reference": "6608f01670c3cc5079e18c1dab1104e002579143"
|
||||
"reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6608f01670c3cc5079e18c1dab1104e002579143",
|
||||
"reference": "6608f01670c3cc5079e18c1dab1104e002579143",
|
||||
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
|
||||
"reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1295,9 +789,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/nikic/PHP-Parser/issues",
|
||||
"source": "https://github.com/nikic/PHP-Parser/tree/v4.12.0"
|
||||
"source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
|
||||
},
|
||||
"time": "2021-07-21T10:44:31+00:00"
|
||||
"time": "2020-12-20T10:01:03+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phar-io/manifest",
|
||||
@@ -1569,16 +1063,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpspec/prophecy",
|
||||
"version": "1.13.0",
|
||||
"version": "1.12.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/phpspec/prophecy.git",
|
||||
"reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
|
||||
"reference": "245710e971a030f42e08f4912863805570f23d39"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
|
||||
"reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
|
||||
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
|
||||
"reference": "245710e971a030f42e08f4912863805570f23d39",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1630,9 +1124,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/phpspec/prophecy/issues",
|
||||
"source": "https://github.com/phpspec/prophecy/tree/1.13.0"
|
||||
"source": "https://github.com/phpspec/prophecy/tree/1.12.2"
|
||||
},
|
||||
"time": "2021-03-17T13:42:18+00:00"
|
||||
"time": "2020-12-19T10:15:11+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpunit/php-code-coverage",
|
||||
@@ -1703,16 +1197,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpunit/php-file-iterator",
|
||||
"version": "2.0.4",
|
||||
"version": "2.0.3",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/php-file-iterator.git",
|
||||
"reference": "28af674ff175d0768a5a978e6de83f697d4a7f05"
|
||||
"reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/28af674ff175d0768a5a978e6de83f697d4a7f05",
|
||||
"reference": "28af674ff175d0768a5a978e6de83f697d4a7f05",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
|
||||
"reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1751,7 +1245,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
|
||||
"source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.4"
|
||||
"source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -1759,7 +1253,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2021-07-19T06:46:01+00:00"
|
||||
"time": "2020-11-30T08:25:21+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpunit/php-text-template",
|
||||
@@ -1867,16 +1361,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpunit/php-token-stream",
|
||||
"version": "3.1.3",
|
||||
"version": "3.1.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/php-token-stream.git",
|
||||
"reference": "9c1da83261628cb24b6a6df371b6e312b3954768"
|
||||
"reference": "472b687829041c24b25f475e14c2f38a09edf1c2"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/9c1da83261628cb24b6a6df371b6e312b3954768",
|
||||
"reference": "9c1da83261628cb24b6a6df371b6e312b3954768",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/472b687829041c24b25f475e14c2f38a09edf1c2",
|
||||
"reference": "472b687829041c24b25f475e14c2f38a09edf1c2",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1914,7 +1408,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
|
||||
"source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.3"
|
||||
"source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -1923,7 +1417,7 @@
|
||||
}
|
||||
],
|
||||
"abandoned": true,
|
||||
"time": "2021-07-26T12:15:06+00:00"
|
||||
"time": "2020-11-30T08:38:46+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpunit/phpunit",
|
||||
@@ -2679,16 +2173,16 @@
|
||||
},
|
||||
{
|
||||
"name": "theseer/tokenizer",
|
||||
"version": "1.2.1",
|
||||
"version": "1.2.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/theseer/tokenizer.git",
|
||||
"reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
|
||||
"reference": "75a63c33a8577608444246075ea0af0d052e452a"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
|
||||
"reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
|
||||
"url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
|
||||
"reference": "75a63c33a8577608444246075ea0af0d052e452a",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2717,7 +2211,7 @@
|
||||
"description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
|
||||
"support": {
|
||||
"issues": "https://github.com/theseer/tokenizer/issues",
|
||||
"source": "https://github.com/theseer/tokenizer/tree/1.2.1"
|
||||
"source": "https://github.com/theseer/tokenizer/tree/master"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -2725,39 +2219,34 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2021-07-28T10:34:58+00:00"
|
||||
"time": "2020-07-12T23:59:07+00:00"
|
||||
},
|
||||
{
|
||||
"name": "webmozart/assert",
|
||||
"version": "1.10.0",
|
||||
"version": "1.9.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/webmozarts/assert.git",
|
||||
"reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
|
||||
"url": "https://github.com/webmozart/assert.git",
|
||||
"reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
|
||||
"reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
|
||||
"url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
|
||||
"reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.2 || ^8.0",
|
||||
"php": "^5.3.3 || ^7.0 || ^8.0",
|
||||
"symfony/polyfill-ctype": "^1.8"
|
||||
},
|
||||
"conflict": {
|
||||
"phpstan/phpstan": "<0.12.20",
|
||||
"vimeo/psalm": "<4.6.1 || 4.6.2"
|
||||
"vimeo/psalm": "<3.9.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^8.5.13"
|
||||
"phpunit/phpunit": "^4.8.36 || ^7.5.13"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.10-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Webmozart\\Assert\\": "src/"
|
||||
@@ -2780,10 +2269,10 @@
|
||||
"validate"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/webmozarts/assert/issues",
|
||||
"source": "https://github.com/webmozarts/assert/tree/1.10.0"
|
||||
"issues": "https://github.com/webmozart/assert/issues",
|
||||
"source": "https://github.com/webmozart/assert/tree/master"
|
||||
},
|
||||
"time": "2021-03-09T10:59:23+00:00"
|
||||
"time": "2020-07-08T17:02:28+00:00"
|
||||
}
|
||||
],
|
||||
"aliases": [],
|
||||
@@ -2795,5 +2284,5 @@
|
||||
"php": "^7.2"
|
||||
},
|
||||
"platform-dev": [],
|
||||
"plugin-api-version": "2.1.0"
|
||||
"plugin-api-version": "2.0.0"
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ networks:
|
||||
|
||||
services:
|
||||
ospos:
|
||||
image: jekkos/opensourcepos:3.4.0
|
||||
image: jekkos/opensourcepos:3.3.5
|
||||
restart: always
|
||||
depends_on:
|
||||
- mysql
|
||||
|
||||
@@ -14,7 +14,7 @@ networks:
|
||||
|
||||
services:
|
||||
ospos:
|
||||
image: jekkos/opensourcepos:3.3.4
|
||||
image: jekkos/opensourcepos:3.3.5
|
||||
restart: always
|
||||
depends_on:
|
||||
- mysql
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "opensourcepos",
|
||||
"version": "3.4.0",
|
||||
"version": "3.3.5",
|
||||
"description": "Open Source Point of Sale is a web based point of sale system written in the PHP language. It uses MySQL as the data storage back-end and has a simple user interface.",
|
||||
"main": "index.php",
|
||||
"license": "MIT",
|
||||
|
||||
Reference in New Issue
Block a user