objecttothis
340ddde87a
Added EventSauce 0.8.2 to composer
2021-08-10 13:13:50 +04:00
Jeroen Peelaerts
4c3f6e4c31
Fix username verification on insert/update ( #3239 )
2021-08-07 02:12:30 +02:00
Jeroen Peelaerts
85f577556e
Fix employee update ( #3239 )
2021-08-07 02:12:30 +02:00
Jeroen Peelaerts
dc2b2862f9
Fix employee update ( #3239 )
2021-08-07 02:12:30 +02:00
objecttothis
9217f2d12f
Fixed missing function call
...
This removes the function call to a function that doesn't exist anymore.
The replacement does the same job in one line of code.
Added comment to bring clarity to what the code is doing.
2021-08-06 19:19:09 +02:00
objecttothis
5ebe626543
Formatting Changes
...
- Removed unneeded tabs that mess up alignment.
2021-08-06 19:16:52 +02:00
Mehmet Keçeci
e277fc09ac
minimal Turkish translation
2021-08-05 10:40:56 +02:00
sonnysk76
7e2a5eb297
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 94.4% (34 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/es_MX/
2021-08-05 07:09:41 +02:00
sonnysk76
bcc9cac570
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 35.8% (14 of 39 strings)
Translation: opensourcepos/module
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/module/es_MX/
2021-08-05 07:09:41 +02:00
sonnysk76
6d4421e13b
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 13.6% (15 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/es_MX/
2021-08-05 07:09:41 +02:00
sonnysk76
9d320772f5
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (12 of 12 strings)
Translation: opensourcepos/messages
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/messages/es_MX/
2021-08-05 07:09:41 +02:00
sonnysk76
3d441689d0
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (11 of 11 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/es_MX/
2021-08-05 07:09:40 +02:00
sonnysk76
4eacc65785
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/receivings
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/receivings/es_MX/
2021-08-05 07:09:40 +02:00
sonnysk76
a31ae36e18
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 19.4% (27 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/es_MX/
2021-08-05 07:09:40 +02:00
sonnysk76
74ed7488ee
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/employees
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/employees/es_MX/
2021-08-05 07:09:39 +02:00
khao_lek
be72a0169b
Translated using Weblate (Thai)
...
Currently translated at 100.0% (11 of 11 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/th/
2021-08-04 07:03:00 +02:00
khao_lek
d786039765
Translated using Weblate (Thai)
...
Currently translated at 99.3% (300 of 302 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/th/
2021-08-04 07:03:00 +02:00
khao_lek
74724a890f
Translated using Weblate (Thai)
...
Currently translated at 98.7% (76 of 77 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/th/
2021-08-04 07:03:00 +02:00
Jeroen Peelaerts
8c201816b9
Update spanish ( #3255 )
2021-08-03 11:04:03 +02:00
Jeroen Peelaerts
5767a3929f
Fix duplicate username error message ( #3239 )
2021-07-30 21:16:35 +02:00
Jeroen Peelaerts
2311a644ab
Fix employee username duplication check ( #3239 )
2021-07-30 21:09:17 +02:00
objecttothis
3d65c3fffa
CSV import optimizations and code cleanup ( #3150 )
...
Optimizations and CSV Import Rework
- Replaced " with ' where possible to prevent the parser from being called when not needed.
- Replaced == and != with === and !== where possible for bug prevention and speed.
- Replaced -1 with NEW_ITEM global constant for code clarity.
- Added NEW_ITEM global constant to constants.php.
- Refactored CSV import function names for clarity.
- Added capability to import a CSV file containing updates.
- Replaced array() with [] for speed and consistency.
- Removed hungarian notation from two private functions.
- Refactored QueryBuilder functions to place table name in the get() function call.
- Replaced (int) cast with call to intval() for speed.
- Replaced == and != with === and !== where possible to prevent bugs and for speed.
- Replaced array() with [] for speed and consistency.
- Fixed search_custom call
Optimizations and bugfixes for attributes used in csv_import
- Reordered where statements in queries to match composite index on attribute_links table.
- fixed value_exists() to account for different attribute types.
- Removed hungarian notation on private function.
- Replaced array() with [] for speed and consistency.
- Replaced != with <> in SQL for consistency.
- Removed from() calls in querybuilder where possible to reduce function calls.
- Add get_items_by_value()
- Reworked check_data_validity()
- Remove unneeded comments
- Refactor functions for code clarity.
- Use $this->db->dbprefix() where possible instead of hand-writing ospos_...
- Removed unneeded column from query.
- Replaced (int) cast with intval() call for speed.
- Added get_attribute_values()
- Fixed issue with date format locale not being used
- Refactored save_value to respect different attribute_types
- Added delete_orphaned_links() to remove attribute_links that are no longer linked to any items
- Added get_attributes_by_definition()
- Added attribute_cleanup()
Optimizations used in csv_import
- replaced array() with [] for consistency and speed.
- Removed hungarian notation in private functions.
- Replaced " with ' where possible to prevent the parser from being called.
- Minor formatting
- Refactored if statement to tertiary notation for cleaner implementation.
- Replaced " for ' where possible to prevent the parser from being called.
- Added the Id column in the generate_import_items_csv() template so that users can submit an update to an existing item.
- Removed unused key=>value pairs in foreach loops for speed.
- Removed unneeded comments where the function name was self-explanatory.
- Rework get_csv_file() for speed.
- Rework bom_exists() for speed.
- Replaced array() with [] for speed and consistency.
- Replaced == with === where possible to prevent bugs and for speed.
- Reworked valid_date() and valid_decimal helper functions for speed and accuracy according to the locale_format instead of a fixed format.
- Minor Reformatting for clarity.
- Replaced " for ' to prevent the parser from being called.
- Refactored function call names to reflect new names.
- Added missing ; in
- Used String interpolation where useful.
- Spelling fix in comment
Requested Review Changes
- Fixed indentation in Items.php
- Fixed indentation in Attribute.php
- Refactored variable out of long line of code to make it more readable.
2021-07-29 22:22:59 +02:00
gurulenin
517635181c
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/ta/
2021-07-28 15:46:15 +02:00
Jeroen Peelaerts
1547272665
Check username before employee creation ( #3239 )
2021-07-23 00:59:40 +02:00
Jeroen Peelaerts
8675aa82df
Attribute value encoding fix ( #3241 )
2021-07-22 19:01:59 +02:00
gurulenin
5acafd4ea8
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: opensourcepos/attributes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/attributes/ta/
2021-07-22 18:45:40 +02:00
gurulenin
2db50d69d0
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/receivings
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/receivings/ta/
2021-07-22 18:45:40 +02:00
Jeroen Peelaerts
c6d0582fcb
Add category column to item summary report ( #3240 )
2021-07-21 23:22:53 +02:00
Emin Tufan Çetin
3fbfd8c917
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/tr/
2021-07-18 11:06:10 +02:00
Emin Tufan Çetin
c38fc60f6a
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (11 of 11 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/tr/
2021-07-18 11:06:10 +02:00
Emin Tufan Çetin
346a34121f
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (77 of 77 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/tr/
2021-07-18 11:06:10 +02:00
Emin Tufan Çetin
9c9c2e8b81
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/tr/
2021-07-18 11:06:09 +02:00
Emin Tufan Çetin
510a01e2b5
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (68 of 68 strings)
Translation: opensourcepos/giftcards
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/giftcards/tr/
2021-07-18 11:06:09 +02:00
Emin Tufan Çetin
93014dc4d8
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (110 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/tr/
2021-07-18 11:06:08 +02:00
Emin Tufan Çetin
294f63bd31
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/tr/
2021-07-18 11:06:08 +02:00
Emin Tufan Çetin
1b7531c7f4
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/tr/
2021-07-18 11:06:08 +02:00
Emin Tufan Çetin
6d1eeb3c62
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (139 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/tr/
2021-07-18 11:06:07 +02:00
Emin Tufan Çetin
3ada6f8372
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (302 of 302 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/tr/
2021-07-18 11:06:07 +02:00
Emin Tufan Çetin
d15d001b5b
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (35 of 35 strings)
Translation: opensourcepos/employees
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/employees/tr/
2021-07-18 11:06:06 +02:00
BudsieBuds
29d6138951
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (11 of 11 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/nl/
2021-07-17 04:55:34 +02:00
BudsieBuds
d6a4161416
Translated using Weblate (Dutch)
...
Currently translated at 96.1% (74 of 77 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/nl/
2021-07-17 04:55:34 +02:00
BudsieBuds
0604ad121b
Translated using Weblate (Dutch)
...
Currently translated at 99.3% (300 of 302 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/nl/
2021-07-17 04:55:34 +02:00
teddy tang
ffdc8f0bd5
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (139 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/zh_Hant/
2021-07-15 06:59:54 +02:00
teddy tang
83d1194d0c
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (77 of 77 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/zh_Hant/
2021-07-15 06:59:54 +02:00
gurulenin
e90b58f110
Translated using Weblate (Tamil)
...
Currently translated at 98.7% (76 of 77 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/ta/
2021-07-15 06:59:53 +02:00
gurulenin
bee3c7ede0
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (139 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/ta/
2021-07-15 06:59:53 +02:00
gurulenin
bfc1c2e55e
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (11 of 11 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/ta/
2021-07-15 06:59:53 +02:00
teddy tang
8d0c5c6ee9
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (11 of 11 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/zh_Hant/
2021-07-15 06:59:53 +02:00
teddy tang
f87c90fdec
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 96.0% (290 of 302 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/zh_Hant/
2021-07-15 06:59:52 +02:00
FrancescoUK
cb560949ac
Translated using Weblate (English (United Kingdom))
...
Currently translated at 92.2% (71 of 77 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/en_GB/
2021-07-14 23:56:52 +02:00
FrancescoUK
4d5a2f15c2
Translated using Weblate (English (United Kingdom))
...
Currently translated at 54.5% (6 of 11 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/en_GB/
2021-07-14 23:56:52 +02:00
FrancescoUK
defb484640
Translated using Weblate (English (United Kingdom))
...
Currently translated at 98.6% (298 of 302 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/en_GB/
2021-07-14 23:56:52 +02:00
Jeroen Peelaerts
57fb2c98fa
Move expenses categories to office menu group
2021-07-14 23:43:36 +02:00
Jeroen Peelaerts
c3bdff6fb4
Fix escape sequence in Polish
2021-07-14 15:50:34 +02:00
teddy tang
4ecfbc2398
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (78 of 78 strings)
Translation: opensourcepos/taxes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/taxes/zh_Hant/
2021-07-14 14:06:17 +02:00
gurulenin
41152a5b12
Translated using Weblate (Tamil)
...
Currently translated at 99.4% (179 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/ta/
2021-07-14 14:06:17 +02:00
teddy tang
797ac4c9d4
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 80.5% (240 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/zh_Hant/
2021-07-14 14:06:17 +02:00
gurulenin
13be0a1b0c
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (110 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/ta/
2021-07-14 14:06:17 +02:00
gurulenin
b6ac9e5909
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/ta/
2021-07-14 14:06:17 +02:00
gurulenin
3debc57ca8
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/ta/
2021-07-14 14:06:17 +02:00
teddy tang
fd1e942273
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (110 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/zh_Hant/
2021-07-14 14:06:17 +02:00
gurulenin
c641b1762c
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/ta/
2021-07-14 14:06:17 +02:00
gurulenin
6ee8757b12
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/ta/
2021-07-14 14:06:17 +02:00
teddy tang
ee575b5109
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 90.6% (126 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/zh_Hant/
2021-07-14 14:06:17 +02:00
Jeroen Peelaerts
e11eba978f
Sync language files
2021-07-14 08:35:04 +02:00
Jeroen Peelaerts
a4234a3129
Fix minification ( #3213 )
...
Upgrade grunt, grunt-cli and grunt-uglify
Only copy bootswatch 5 using npm. Remove unused dependencies and tasks
(apigen, mocha, wd, phantomjs). This should decrease the container size.
2021-07-14 08:35:04 +02:00
BudsieBuds
ba8cb0ef86
Create codeql-analysis.yml
2021-07-14 08:35:04 +02:00
BudsieBuds
2eee6313e0
Converted login to BS5 and other changes
...
Converted the login view to Bootstrap and Bootswatch 5. Added an option to change the login form style. Shifted some translations around and added new ones. Partially moved from Bower to NPM, added new branding logo's. Some other small changes and optimizations.
2021-07-14 08:35:04 +02:00
Jeroen Peelaerts
95f19d6063
Force html2canvas version ( #3236 )
2021-07-14 00:18:00 +02:00
jacekz123
8a854d1912
Translated using Weblate (Polish)
...
Currently translated at 2.7% (1 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/pl/
2021-07-13 18:03:01 +02:00
jacekz123
80f8dd9b37
Translated using Weblate (Polish)
...
Currently translated at 2.5% (1 of 39 strings)
Translation: opensourcepos/module
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/module/pl/
2021-07-13 18:03:00 +02:00
jacekz123
94e9d35314
Translated using Weblate (Polish)
...
Currently translated at 3.8% (2 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/pl/
2021-07-13 18:03:00 +02:00
jacekz123
8b5b4f9279
Translated using Weblate (Polish)
...
Currently translated at 5.5% (2 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/pl/
2021-07-13 18:03:00 +02:00
jacekz123
b3e4b72b30
Translated using Weblate (Polish)
...
Currently translated at 1.1% (2 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/pl/
2021-07-13 18:03:00 +02:00
jacekz123
ffd511bd06
Translated using Weblate (Polish)
...
Currently translated at 1.2% (1 of 78 strings)
Translation: opensourcepos/taxes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/taxes/pl/
2021-07-13 18:02:59 +02:00
jacekz123
393cee62aa
Translated using Weblate (Polish)
...
Currently translated at 55.0% (11 of 20 strings)
Translation: opensourcepos/datepicker
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/datepicker/pl/
2021-07-13 18:02:58 +02:00
jacekz123
870aad2d67
Translated using Weblate (Polish)
...
Currently translated at 12.5% (1 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/pl/
2021-07-13 18:02:58 +02:00
jacekz123
789eb82940
Translated using Weblate (Polish)
...
Currently translated at 3.4% (1 of 29 strings)
Translation: opensourcepos/attributes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/attributes/pl/
2021-07-13 18:02:58 +02:00
jacekz123
89783bc190
Translated using Weblate (Polish)
...
Currently translated at 8.3% (1 of 12 strings)
Translation: opensourcepos/messages
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/messages/pl/
2021-07-13 18:02:57 +02:00
jacekz123
d11824ffd4
Translated using Weblate (Polish)
...
Currently translated at 1.9% (1 of 52 strings)
Translation: opensourcepos/receivings
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/receivings/pl/
2021-07-13 18:02:57 +02:00
jacekz123
d0093253a1
Translated using Weblate (Polish)
...
Currently translated at 2.2% (1 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/pl/
2021-07-13 18:02:57 +02:00
jacekz123
1f7529baf9
Translated using Weblate (Polish)
...
Currently translated at 8.6% (12 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/pl/
2021-07-13 18:02:57 +02:00
jacekz123
feba68b08f
Translated using Weblate (Polish)
...
Currently translated at 2.8% (1 of 35 strings)
Translation: opensourcepos/employees
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/employees/pl/
2021-07-13 18:02:56 +02:00
jacekz123
37cf26b10a
Translated using Weblate (Polish)
...
Currently translated at 12.5% (1 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/pl/
2021-07-13 18:02:56 +02:00
jacekz123
f80f3a9cab
Translated using Weblate (Polish)
...
Currently translated at 4.7% (1 of 21 strings)
Translation: opensourcepos/suppliers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/suppliers/pl/
2021-07-13 18:02:55 +02:00
teddy tang
74a4bfac85
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 74.1% (221 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/zh_Hant/
2021-07-12 12:00:34 +02:00
teddy tang
fa347aa281
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 88.1% (97 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/zh_Hant/
2021-07-12 12:00:33 +02:00
teddy tang
c1f1e6306e
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 84.1% (117 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/zh_Hant/
2021-07-12 12:00:32 +02:00
teddy tang
dc9d66f3de
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (44 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/zh_Hant/
2021-07-12 08:06:57 +02:00
teddy tang
a4f52b765c
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/zh_Hant/
2021-07-12 08:06:57 +02:00
teddy tang
e023b081c5
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (20 of 20 strings)
Translation: opensourcepos/datepicker
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/datepicker/zh_Hant/
2021-07-12 08:06:56 +02:00
teddy tang
9c6f1e4429
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (2 of 2 strings)
Translation: opensourcepos/error
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/error/zh_Hant/
2021-07-12 08:06:56 +02:00
teddy tang
962a323694
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 82.7% (91 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/zh_Hant/
2021-07-12 08:06:56 +02:00
teddy tang
49a99c68ff
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/zh_Hant/
2021-07-12 08:06:56 +02:00
teddy tang
44024b0929
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (68 of 68 strings)
Translation: opensourcepos/giftcards
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/giftcards/zh_Hant/
2021-07-12 08:06:55 +02:00
teddy tang
4e52c2f036
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/zh_Hant/
2021-07-12 08:06:55 +02:00
teddy tang
37e757128b
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (39 of 39 strings)
Translation: opensourcepos/module
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/module/zh_Hant/
2021-07-12 08:06:55 +02:00
teddy tang
394bd671aa
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 73.4% (219 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/zh_Hant/
2021-07-12 08:06:55 +02:00
teddy tang
d0b29d39bf
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (35 of 35 strings)
Translation: opensourcepos/employees
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/employees/zh_Hant/
2021-07-12 08:06:54 +02:00
teddy tang
eb970b2315
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 77.6% (108 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/zh_Hant/
2021-07-12 08:06:54 +02:00
teddy tang
c0c2001754
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/zh_Hant/
2021-07-12 08:06:54 +02:00
teddy tang
ec51bb3991
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/zh_Hant/
2021-07-12 08:06:53 +02:00
teddy tang
4ce569d76e
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 58.3% (21 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/zh_Hant/
2021-07-09 17:20:46 +02:00
teddy tang
c08e32d016
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 66.6% (24 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/zh_Hant/
2021-07-09 17:20:46 +02:00
Ali Alsalman
8a495ffce6
Translated using Weblate (Arabic)
...
Currently translated at 98.8% (178 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/ar_LB/
2021-07-09 17:20:45 +02:00
teddy tang
ea1528f5b9
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 90.0% (18 of 20 strings)
Translation: opensourcepos/datepicker
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/datepicker/zh_Hant/
2021-07-09 17:20:45 +02:00
teddy tang
e59dbdf47e
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 79.0% (87 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/zh_Hant/
2021-07-09 17:20:44 +02:00
teddy tang
0e29a7950a
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (7 of 7 strings)
Translation: opensourcepos/enum
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/enum/zh_Hant/
2021-07-09 17:20:44 +02:00
teddy tang
3d32536292
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 71.8% (214 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/zh_Hant/
2021-07-09 17:20:44 +02:00
teddy tang
be24044076
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 98.5% (67 of 68 strings)
Translation: opensourcepos/giftcards
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/giftcards/zh_Hant/
2021-07-09 17:20:44 +02:00
teddy tang
3986aa8e0a
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 76.9% (107 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/zh_Hant/
2021-07-09 17:20:43 +02:00
teddy tang
d7e40cbe43
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (39 of 39 strings)
Translation: opensourcepos/module
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/module/zh_Hant/
2021-07-09 17:20:42 +02:00
teddy tang
f61307d380
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 82.0% (64 of 78 strings)
Translation: opensourcepos/taxes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/taxes/zh_Hant/
2021-07-09 17:20:42 +02:00
Ir. Anggun Nugroho, M.Kom
ebae2eab5d
Translated using Weblate (Indonesian)
...
Currently translated at 99.0% (109 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/id/
2021-07-08 00:27:05 +02:00
Ir. Anggun Nugroho, M.Kom
795e030e07
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/id/
2021-07-08 00:27:05 +02:00
Ir. Anggun Nugroho, M.Kom
0a91c0009f
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/id/
2021-07-08 00:27:05 +02:00
Ir. Anggun Nugroho, M.Kom
5cea9a7555
Translated using Weblate (Indonesian)
...
Currently translated at 98.0% (51 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/id/
2021-07-08 00:27:05 +02:00
Ir. Anggun Nugroho, M.Kom
9838045683
Translated using Weblate (Indonesian)
...
Currently translated at 99.4% (179 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/id/
2021-07-08 00:27:04 +02:00
Ir. Anggun Nugroho, M.Kom
e33c10e8c4
Translated using Weblate (Indonesian)
...
Currently translated at 87.5% (7 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/id/
2021-07-07 22:23:41 +02:00
Ir. Anggun Nugroho, M.Kom
d680b78e49
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/receivings
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/receivings/id/
2021-07-07 22:01:53 +02:00
jeffyeh
4d7561d311
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 66.6% (24 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/zh_Hant/
2021-07-07 17:10:13 +02:00
jeffyeh
ad37b2cc24
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 74.3% (29 of 39 strings)
Translation: opensourcepos/module
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/module/zh_Hant/
2021-07-07 17:10:13 +02:00
jeffyeh
562d760174
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (19 of 19 strings)
Translation: opensourcepos/expenses_categories
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses_categories/zh_Hant/
2021-07-07 17:10:13 +02:00
jeffyeh
3ea32e7444
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 71.8% (214 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/zh_Hant/
2021-07-07 17:10:12 +02:00
jeffyeh
2953cf47ed
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 28.5% (2 of 7 strings)
Translation: opensourcepos/enum
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/enum/zh_Hant/
2021-07-07 17:10:12 +02:00
jeffyeh
0066447fdb
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 63.7% (190 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/zh_Hant/
2021-07-07 12:22:53 +02:00
jeffyeh
8af2466b20
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (44 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/zh_Hant/
2021-07-07 12:22:52 +02:00
jeffyeh
fb7fd0fc38
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 64.1% (50 of 78 strings)
Translation: opensourcepos/taxes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/taxes/zh_Hant/
2021-07-07 12:22:52 +02:00
William Levesque
52c08e9210
Translated using Weblate (French)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/fr/
2021-07-06 16:58:06 +02:00
William Levesque
f17388e755
Translated using Weblate (French)
...
Currently translated at 93.1% (27 of 29 strings)
Translation: opensourcepos/attributes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/attributes/fr/
2021-07-06 16:58:06 +02:00
Jeroen Peelaerts
a39b3ec1bc
Fallback to english if translations are missing ( #3205 )
2021-07-04 22:18:46 +02:00
Jeroen Peelaerts
ddc7215424
Make Dockerfile windows compatible
2021-07-04 22:18:46 +02:00
khao_lek
2e09cd31c2
Translated using Weblate (Thai)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/th/
2021-07-02 13:44:39 +02:00
Jeroen Peelaerts
7726adbd6f
Revert compose container to 3.3.4
2021-06-29 22:33:02 +02:00
Ricardo Vargas
7bce75f5b6
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 16.5% (23 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/es_MX/
2021-06-21 13:23:12 +02:00
jekkos
ef612fb0c9
Update package.json
2021-06-12 11:35:14 +02:00
jekkos
107745d683
Update grunt to 1.4
...
A CVE was found in the old version of Grunt. Update to the latest.
2021-06-12 11:35:14 +02:00
Jeroen Peelaerts
1117c39c27
Upgrade node & grunt buildbox ( #3208 )
2021-06-12 10:34:52 +02:00
BudsieBuds
ae93341f75
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/nl/
2021-06-09 23:20:00 +02:00
BudsieBuds
d24624d1f6
Translated using Weblate (English)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/en/
2021-06-09 23:20:00 +02:00
jekkos
d87d27dec9
Extract version from config.php ( #3110 )
2021-06-09 17:51:19 +02:00
jekkos
92f25c3993
Remove bintray link ( #3110 )
2021-06-09 15:46:07 +02:00
jekkos
3116903129
Add newline to .travis.yml ( #3110 )
2021-06-09 15:30:52 +02:00
jekkos
cff79601e4
Keep only one zip build per branch ( #3110 )
2021-06-09 13:15:30 +02:00
BudsieBuds
9ca998d523
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/nl/
2021-06-09 04:30:43 +02:00
jekkos
0efd58217f
Publish to github releases ( #3110 )
2021-06-09 00:02:32 +02:00
khao_lek
72eab0cd28
Translated using Weblate (Thai)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/th/
2021-06-07 21:45:10 +02:00
khao_lek
a258567955
Translated using Weblate (Thai)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/th/
2021-06-07 21:45:10 +02:00
khao_lek
ca4782f751
Translated using Weblate (Thai)
...
Currently translated at 100.0% (110 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/th/
2021-06-07 21:45:10 +02:00
khao_lek
e638ff8595
Translated using Weblate (Thai)
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/th/
2021-06-07 21:45:10 +02:00
khao_lek
5f10fda2c1
Translated using Weblate (Thai)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/th/
2021-06-07 21:45:10 +02:00
khao_lek
1faeccc596
Translated using Weblate (Thai)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/th/
2021-06-07 21:45:10 +02:00
khao_lek
fb328e4fb0
Translated using Weblate (Thai)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/th/
2021-06-07 21:45:10 +02:00
jekkos
136f778028
Update build badge for travis-ci.com ( #3063 )
2021-06-06 14:37:13 +02:00
truchosky
8ed0091400
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/es/
2021-06-03 16:35:11 +02:00
truchosky
977d1869e6
Translated using Weblate (Spanish)
...
Currently translated at 98.6% (71 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/es/
2021-06-03 16:35:11 +02:00
truchosky
cc527d8426
Translated using Weblate (Spanish)
...
Currently translated at 87.5% (7 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/es/
2021-06-03 16:35:10 +02:00
truchosky
aa28c0dbf0
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: opensourcepos/attributes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/attributes/es/
2021-06-03 16:35:10 +02:00
Mats Pålsson
15f41c129c
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/sv/
2021-06-02 07:54:24 +02:00
Mats Pålsson
ee30b4d544
Translated using Weblate (Swedish)
...
Currently translated at 98.7% (77 of 78 strings)
Translation: opensourcepos/taxes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/taxes/sv/
2021-06-02 07:54:24 +02:00
Mats Pålsson
2d0029e605
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: opensourcepos/suppliers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/suppliers/sv/
2021-06-02 07:54:24 +02:00
Mats Pålsson
3fb4b398ea
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/sv/
2021-06-02 07:54:24 +02:00
Mats Pålsson
ebe1860858
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: opensourcepos/attributes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/attributes/sv/
2021-06-02 07:54:24 +02:00
Mats Pålsson
7f18d7c1fa
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/sv/
2021-06-02 07:54:23 +02:00
Mats Pålsson
e77b357b38
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/sv/
2021-06-02 07:54:23 +02:00
Mats Pålsson
3e90244410
Translated using Weblate (Swedish)
...
Currently translated at 99.6% (297 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/sv/
2021-06-02 07:54:23 +02:00
Mats Pålsson
2689426e15
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (19 of 19 strings)
Translation: opensourcepos/expenses_categories
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses_categories/sv/
2021-06-02 07:54:22 +02:00
Mats Pålsson
fc3cff5225
Translated using Weblate (Swedish)
...
Currently translated at 98.0% (51 of 52 strings)
Translation: opensourcepos/receivings
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/receivings/sv/
2021-06-02 07:54:22 +02:00
Mats Pålsson
5cee7cd005
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: opensourcepos/module
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/module/sv/
2021-06-02 07:54:22 +02:00
Mats Pålsson
e29b8b1b87
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/sv/
2021-06-02 07:54:22 +02:00
Mats Pålsson
b3e49f05d1
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/sv/
2021-06-02 07:54:21 +02:00
Mats Pålsson
274ad1afde
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (20 of 20 strings)
Translation: opensourcepos/datepicker
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/datepicker/sv/
2021-06-02 07:54:21 +02:00
Mats Pålsson
d4df4e96b6
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (12 of 12 strings)
Translation: opensourcepos/messages
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/messages/sv/
2021-06-02 07:54:21 +02:00
Mats Pålsson
20f104abc8
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (139 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/sv/
2021-06-02 07:54:21 +02:00
Mats Pålsson
25b22a2ebe
Translated using Weblate (Swedish)
...
Currently translated at 98.8% (178 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/sv/
2021-06-02 07:54:20 +02:00
Mats Pålsson
6ecd9a91c4
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (7 of 7 strings)
Translation: opensourcepos/enum
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/enum/sv/
2021-06-02 07:54:20 +02:00
Mats Pålsson
d2f48a9987
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/sv/
2021-06-02 07:54:20 +02:00
Mats Pålsson
c90631fe38
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (110 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/sv/
2021-06-02 07:54:19 +02:00
Mats Pålsson
dfb47060fa
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/sv/
2021-05-31 13:08:38 +02:00
Mats Pålsson
f50cbbf29d
Translated using Weblate (Swedish)
...
Currently translated at 28.5% (2 of 7 strings)
Translation: opensourcepos/enum
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/enum/sv/
2021-05-31 13:08:38 +02:00
Mats Pålsson
a186de7db2
Translated using Weblate (Swedish)
...
Currently translated at 98.6% (71 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/sv/
2021-05-31 13:08:38 +02:00
Mats Pålsson
4845230bd3
Translated using Weblate (Swedish)
...
Currently translated at 66.6% (8 of 12 strings)
Translation: opensourcepos/messages
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/messages/sv/
2021-05-31 13:08:38 +02:00
Mats Pålsson
ac0ec7d729
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/sv/
2021-05-31 13:08:38 +02:00
Mats Pålsson
25b3de4f2f
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (2 of 2 strings)
Translation: opensourcepos/error
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/error/sv/
2021-05-31 13:08:38 +02:00
Jeroen Peelaerts
aee186b2a6
Bump to 3.4.0-dev ( #2942 )
2021-05-26 00:48:42 +02:00
objecttothis
352036209f
Requested Changes
...
- Removed unnecessary indices on deleted column where there would not be many rows.
- Removed unnecessary parenthesis in Item Model.
- Added Composite indices based on MySQL EXPLAIN results.
2021-05-25 14:04:01 +02:00
objecttothis
9ff8611672
Requested Changes
...
- Removed unnecessary indices on deleted column where there would not be many rows.
- Explicitly stated NULL in second parameter of WHERE to improve readability.
2021-05-25 14:04:01 +02:00
objecttothis
2f4c95ecd2
Corrected a duplicated line in the query
2021-05-25 14:04:01 +02:00
objecttothis
97159d42c7
Database Optimizations
...
- Add indexes to tables to improve query times.
- Delete orphaned attribute values.
- Resolve duplicate attribute values.
- Deleted whitespace after migration which was causing Severity: Warning --> Cannot modify header information - headers already sent by
2021-05-25 14:04:01 +02:00
Miguel Martins
2b9155d2f1
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/es_MX/
2021-05-24 20:51:50 +02:00
Miguel Martins
dab1640e70
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/es_MX/
2021-05-24 20:51:50 +02:00
Miguel Martins
2bc70f6426
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 15.8% (22 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/es_MX/
2021-05-24 20:51:49 +02:00
Miguel Martins
15130140be
Translated using Weblate (English (United Kingdom))
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/en_GB/
2021-05-24 06:01:58 +02:00
Miguel Martins
aab5ae685a
Translated using Weblate (English (United Kingdom))
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/en_GB/
2021-05-24 06:01:58 +02:00
Miguel Martins
afedaa4510
Translated using Weblate (English (United Kingdom))
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/en_GB/
2021-05-24 06:01:58 +02:00
Miguel Martins
0e79e145c3
Translated using Weblate (Spanish)
...
Currently translated at 95.9% (286 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/es/
2021-05-24 06:01:58 +02:00
Miguel Martins
fabc4d7153
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/pt_BR/
2021-05-24 06:01:58 +02:00
Miguel Martins
0e2b7a87d9
Translated using Weblate (English (United Kingdom))
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/en_GB/
2021-05-24 06:01:58 +02:00
Miguel Martins
115b014a8c
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/pt_BR/
2021-05-24 06:01:58 +02:00
Miguel Martins
70bb633581
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/pt_BR/
2021-05-24 06:01:58 +02:00
Miguel Martins
1c86b0b697
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/pt_BR/
2021-05-24 06:01:58 +02:00
Miguel Martins
75684ab009
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (44 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/pt_BR/
2021-05-24 06:01:58 +02:00
Miguel Martins
b7e164a4a6
Translated using Weblate (English (United Kingdom))
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/en_GB/
2021-05-24 06:01:58 +02:00
Miguel Martins
ddc12be596
Translated using Weblate (English (United Kingdom))
...
Currently translated at 100.0% (44 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/en_GB/
2021-05-24 06:01:58 +02:00
Steve Ireland
0147c3a80e
Fix Discounted Item Kit bug #3129 ( #3186 )
2021-05-23 18:30:31 -04:00
robbytriadi
6dc3816c46
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/id/
2021-05-23 00:47:39 +02:00
robbytriadi
88ca4aca87
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/id/
2021-05-23 00:47:39 +02:00
robbytriadi
ae37dd9bea
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: opensourcepos/attributes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/attributes/id/
2021-05-23 00:47:39 +02:00
robbytriadi
e24cd75f0d
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/id/
2021-05-23 00:47:38 +02:00
Natig Asadov
b79e93ccb6
Translated using Weblate (Azerbaijani)
...
Currently translated at 97.2% (35 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/az/
2021-05-21 22:11:14 +02:00
Anton
ad3399b1f6
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (139 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/uk-UA/
2021-05-21 04:52:42 +02:00
Anton
a3b45f0f4b
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/receivings
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/receivings/uk-UA/
2021-05-21 04:52:42 +02:00
Anton
200cab389a
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (78 of 78 strings)
Translation: opensourcepos/taxes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/taxes/uk-UA/
2021-05-21 04:52:42 +02:00
Anton
b53d0ad821
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/uk-UA/
2021-05-21 04:52:42 +02:00
Anton
8fa6992b00
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (12 of 12 strings)
Translation: opensourcepos/messages
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/messages/uk-UA/
2021-05-21 04:52:41 +02:00
Anton
fe6d599005
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/uk-UA/
2021-05-21 04:52:41 +02:00
Anton
374cacd860
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/uk-UA/
2021-05-21 04:52:41 +02:00
Anton
fcd65a6e9c
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (35 of 35 strings)
Translation: opensourcepos/employees
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/employees/uk-UA/
2021-05-21 04:52:41 +02:00
Anton
309417c405
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/uk-UA/
2021-05-21 04:52:41 +02:00
Anton
50bca01126
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/uk-UA/
2021-05-21 04:52:41 +02:00
Anton
fa9bb50b73
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (110 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/uk-UA/
2021-05-21 04:52:40 +02:00
Anton
2ec186d3a3
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/uk-UA/
2021-05-21 04:52:40 +02:00
Anton
1574e99338
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/uk-UA/
2021-05-21 04:52:40 +02:00
Anton
1c36e649d6
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/uk-UA/
2021-05-21 04:52:39 +02:00
Anton
01b8828871
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (68 of 68 strings)
Translation: opensourcepos/giftcards
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/giftcards/uk-UA/
2021-05-21 04:52:39 +02:00
BudsieBuds
0e2fbb9832
Translated using Weblate (English)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/en/
2021-05-19 23:49:49 +02:00
BudsieBuds
87c788af62
Translated using Weblate (English)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/en/
2021-05-19 23:49:49 +02:00
BudsieBuds
ac9830ec2b
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (35 of 35 strings)
Translation: opensourcepos/employees
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/employees/nl/
2021-05-19 23:49:48 +02:00
BudsieBuds
3d3c928d98
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/nl/
2021-05-19 23:49:48 +02:00
BudsieBuds
a3d8b11be0
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/nl/
2021-05-19 23:49:48 +02:00
BudsieBuds
4929d7c8ce
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (78 of 78 strings)
Translation: opensourcepos/taxes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/taxes/nl/
2021-05-19 23:49:47 +02:00
BudsieBuds
5493c75320
Translated using Weblate (English)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/en/
2021-05-19 23:49:47 +02:00
BudsieBuds
1e1e992f94
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/nl/
2021-05-19 23:49:47 +02:00
BudsieBuds
e26f9e9fa7
Translated using Weblate (English)
...
Currently translated at 100.0% (110 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/en/
2021-05-19 23:49:47 +02:00
BudsieBuds
a90af8dd9e
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (139 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/nl/
2021-05-19 23:49:46 +02:00
BudsieBuds
13a6ce3e45
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: opensourcepos/suppliers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/suppliers/nl/
2021-05-19 23:49:46 +02:00
BudsieBuds
7af15c253c
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (19 of 19 strings)
Translation: opensourcepos/expenses_categories
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses_categories/nl/
2021-05-19 23:49:46 +02:00
BudsieBuds
3f18619497
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: opensourcepos/expenses
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses/nl/
2021-05-19 23:49:46 +02:00
BudsieBuds
8a904ba749
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (7 of 7 strings)
Translation: opensourcepos/enum
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/enum/nl/
2021-05-19 23:49:45 +02:00
BudsieBuds
aaa1055adc
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (110 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/nl/
2021-05-19 23:49:45 +02:00
BudsieBuds
cddc67bb2d
Translated using Weblate (English)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/en/
2021-05-19 23:49:45 +02:00
BudsieBuds
246a121203
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/nl/
2021-05-19 23:49:44 +02:00
BudsieBuds
4402d35ed7
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: opensourcepos/module
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/module/nl/
2021-05-19 23:49:43 +02:00
BudsieBuds
3696e7237b
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/nl/
2021-05-19 23:49:43 +02:00
BudsieBuds
f2e20266d3
Translated using Weblate (Dutch)
...
Currently translated at 14.0% (42 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/nl/
2021-05-18 23:31:03 +02:00
BudsieBuds
12952aaa26
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (68 of 68 strings)
Translation: opensourcepos/giftcards
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/giftcards/nl/
2021-05-18 23:31:02 +02:00
BudsieBuds
faebbce51a
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/nl/
2021-05-18 23:31:02 +02:00
BudsieBuds
5f9ed5c576
Translated using Weblate (Dutch)
...
Currently translated at 98.6% (71 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/nl/
2021-05-18 23:31:02 +02:00
BudsieBuds
24644eaf19
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/nl/
2021-05-18 23:31:01 +02:00
BudsieBuds
3314705d7a
Translated using Weblate (Dutch)
...
Currently translated at 94.8% (37 of 39 strings)
Translation: opensourcepos/module
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/module/nl/
2021-05-18 23:31:01 +02:00
BudsieBuds
c9552585bf
Translated using Weblate (Dutch)
...
Currently translated at 90.4% (19 of 21 strings)
Translation: opensourcepos/suppliers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/suppliers/nl/
2021-05-18 23:31:01 +02:00
BudsieBuds
e9f4e81f37
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: opensourcepos/attributes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/attributes/nl/
2021-05-18 23:31:01 +02:00
BudsieBuds
763cb0c06b
Translated using Weblate (English)
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/en/
2021-05-18 23:31:01 +02:00
BudsieBuds
493e295701
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (12 of 12 strings)
Translation: opensourcepos/messages
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/messages/nl/
2021-05-18 20:46:32 +02:00
BudsieBuds
a4a31ade22
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: opensourcepos/attributes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/attributes/nl/
2021-05-18 20:46:32 +02:00
BudsieBuds
03187da0d9
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/receivings
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/receivings/nl/
2021-05-18 20:46:32 +02:00
BudsieBuds
ac6e421906
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (2 of 2 strings)
Translation: opensourcepos/error
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/error/nl/
2021-05-18 20:46:32 +02:00
BudsieBuds
feb7d1847c
Translated using Weblate (Dutch)
...
Currently translated at 59.7% (43 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/nl/
2021-05-18 20:46:32 +02:00
BudsieBuds
b0190e416f
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/nl/
2021-05-18 20:46:32 +02:00
jekkos
19bd43280d
Update badges in README.md
2021-05-18 14:56:30 +02:00
BudsieBuds
3ebda3cc98
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/nl/
2021-05-18 12:55:56 +02:00
BudsieBuds
6503621f1d
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (7 of 7 strings)
Translation: opensourcepos/enum
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/enum/nl/
2021-05-18 12:55:56 +02:00
BudsieBuds
c8ad6b911a
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: opensourcepos/attributes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/attributes/nl/
2021-05-18 12:55:56 +02:00
BudsieBuds
20eb15beaf
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (2 of 2 strings)
Translation: opensourcepos/error
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/error/nl/
2021-05-18 12:55:56 +02:00
BudsieBuds
7dca1decd5
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (68 of 68 strings)
Translation: opensourcepos/giftcards
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/giftcards/nl/
2021-05-18 12:55:56 +02:00
BudsieBuds
6e11b1d242
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (12 of 12 strings)
Translation: opensourcepos/messages
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/messages/nl/
2021-05-18 12:55:55 +02:00
BudsieBuds
a60a4904cb
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/receivings
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/receivings/nl/
2021-05-18 12:55:55 +02:00
BudsieBuds
dce47200bf
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (20 of 20 strings)
Translation: opensourcepos/datepicker
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/datepicker/nl/
2021-05-18 12:55:55 +02:00
sathisharumugams
b255ce8609
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (110 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/ta/
2021-05-15 16:55:40 +02:00
sathisharumugams
5fd211d3a8
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/ta/
2021-05-13 17:23:04 +02:00
sathisharumugams
c977f16859
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/ta/
2021-05-13 09:07:57 +02:00
sathisharumugams
2bebfba3ef
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/ta/
2021-05-12 21:04:05 +02:00
sathisharumugams
1c9a1a3550
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/ta/
2021-05-12 14:58:47 +02:00
robbytriadi
fa6d0004de
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/id/
2021-05-08 00:55:30 +02:00
NGUYỄN HỮU DŨNG
dce9e889e4
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (139 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/vi/
2021-05-03 22:53:30 +02:00
NGUYỄN HỮU DŨNG
ef488fe0cd
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/vi/
2021-05-03 22:53:30 +02:00
NGUYỄN HỮU DŨNG
e2a3647227
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/vi/
2021-05-03 22:53:29 +02:00
karikalan-cherian
c19612814e
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/ta/
2021-04-23 07:20:41 +02:00
karikalan-cherian
bb64e1db00
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/ta/
2021-04-23 07:20:41 +02:00
karikalan-cherian
49137f5a76
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (78 of 78 strings)
Translation: opensourcepos/taxes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/taxes/ta/
2021-04-23 07:20:41 +02:00
karikalan-cherian
e9dd350222
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (20 of 20 strings)
Translation: opensourcepos/datepicker
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/datepicker/ta/
2021-04-23 07:20:41 +02:00
jekkos
663da89293
Fix decimal render ( #2975 )
2021-04-22 22:28:12 +02:00
Jeroen Peelaerts
8513a2b85b
Disable https in docker-compose ( #3164 )
2021-04-22 22:01:27 +02:00
karikalan-cherian
d70a90e12c
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/ta/
2021-04-22 19:01:18 +02:00
karikalan-cherian
aa9d2519f4
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/ta/
2021-04-22 16:14:42 +02:00
jekkos
fc4e320ee3
Remove cPanel instructions as it's not maintained
2021-04-22 15:36:17 +02:00
oviya22
b42b26b469
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (110 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/ta/
2021-04-22 15:12:34 +02:00
NGUYỄN HỮU DŨNG
392d92b3b9
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/vi/
2021-04-22 09:26:20 +02:00
NGUYỄN HỮU DŨNG
3405c9f974
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/receivings
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/receivings/vi/
2021-04-22 09:26:20 +02:00
NGUYỄN HỮU DŨNG
72465d36e3
Translated using Weblate (Vietnamese)
...
Currently translated at 98.8% (178 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/vi/
2021-04-22 09:26:19 +02:00
karikalan-cherian
e596cd43c2
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (7 of 7 strings)
Translation: opensourcepos/enum
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/enum/ta/
2021-04-22 09:26:19 +02:00
zv20
48daa94926
Translated using Weblate (Bulgarian)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/bg/
2021-04-22 00:17:46 +02:00
Kumaran
810a2f7e7a
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/ta/
2021-04-22 00:17:46 +02:00
Kumaran
96c69f927f
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/ta/
2021-04-22 00:17:46 +02:00
Kumaran
8229092cad
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/ta/
2021-04-22 00:17:46 +02:00
Kumaran
34e0c28886
Translated using Weblate (Tamil)
...
Currently translated at 100.0% (2 of 2 strings)
Translation: opensourcepos/error
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/error/ta/
2021-04-22 00:17:46 +02:00
Kumaran
73fe8a0e0b
Translated using Weblate (English)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/en/
2021-04-22 00:17:46 +02:00
zv20
0ff1782cd3
Translated using Weblate (Bulgarian)
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/bg/
2021-04-22 00:17:46 +02:00
zv20
e89aed188b
Translated using Weblate (Bulgarian)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/bg/
2021-04-22 00:17:46 +02:00
zv20
2b4cdfb2a1
Translated using Weblate (Bulgarian)
...
Currently translated at 98.8% (178 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/bg/
2021-04-22 00:17:46 +02:00
zv20
4f8dc9003a
Translated using Weblate (Bulgarian)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/bg/
2021-04-22 00:17:46 +02:00
Jeroen Peelaerts
5cac9bb5ed
Bump to 3.3.4
2021-04-21 21:47:33 +02:00
zv20
59fe090b5e
Translated using Weblate (English)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/en/
2021-04-21 21:13:17 +02:00
Jeroen Peelaerts
080e8ac20c
Add Tamil language ( #3162 )
2021-04-18 22:48:00 +02:00
Jeroen Peelaerts
46346a5b46
Fix discount rendering in receiving receipt ( #3114 )
2021-04-18 21:31:02 +02:00
Jeroen Peelaerts
dfd19c38f2
Render percentage discounts in configured locale ( #3114 )
2021-04-18 21:31:02 +02:00
Jeroen Peelaerts
b400223c57
Fix discount parsing ( #3114 )
2021-04-18 21:31:02 +02:00
Aril Apria Susanto
adb17c9865
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/id/
2021-04-18 04:31:59 +02:00
Aril Apria Susanto
793bd7b093
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/id/
2021-04-17 19:01:35 +02:00
Aril Apria Susanto
a84c734c75
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/id/
2021-04-17 19:01:35 +02:00
Aril Apria Susanto
c2cee3c603
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (35 of 35 strings)
Translation: opensourcepos/employees
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/employees/id/
2021-04-17 19:01:35 +02:00
Aril Apria Susanto
954d2bdb37
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (12 of 12 strings)
Translation: opensourcepos/messages
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/messages/id/
2021-04-17 19:01:35 +02:00
Aril Apria Susanto
8b03b98b57
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/id/
2021-04-17 19:01:35 +02:00
Jeroen Peelaerts
0fb93d6d14
Add sales total to daily overview ( #3138 )
2021-04-07 08:51:29 +02:00
Jeroen Peelaerts
a3a06fdb07
Fix cash totals in payment summary ( #3138 )
2021-04-07 08:51:29 +02:00
Jeroen Peelaerts
85b9e3bf65
Show sale count in tax summary ( #3134 )
2021-04-02 09:12:02 +02:00
Trần Ngọc Quân
990daef2c2
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (72 of 72 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/vi/
2021-03-31 05:05:08 +02:00
Trần Ngọc Quân
1a26f096fe
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (110 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/vi/
2021-03-30 02:37:26 +02:00
Trần Ngọc Quân
8c15742f56
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (139 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/vi/
2021-03-30 02:37:15 +02:00
Trần Ngọc Quân
51ec09d527
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: opensourcepos/suppliers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/suppliers/vi/
2021-03-30 02:37:04 +02:00
Trần Ngọc Quân
d29bab6974
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (7 of 7 strings)
Translation: opensourcepos/enum
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/enum/vi/
2021-03-30 02:36:53 +02:00
Trần Ngọc Quân
f06f020df2
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/vi/
2021-03-30 02:36:42 +02:00
Trần Ngọc Quân
d0dd8667b5
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/vi/
2021-03-30 02:36:31 +02:00
Trần Ngọc Quân
0fde542bec
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/vi/
2021-03-30 02:36:19 +02:00
Trần Ngọc Quân
4d447167c2
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/vi/
2021-03-30 02:06:05 +02:00
Trần Ngọc Quân
e52c17efd4
Translated using Weblate (Vietnamese)
...
Currently translated at 99.4% (179 of 180 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/vi/
2021-03-30 02:05:48 +02:00
Trần Ngọc Quân
3f372c2f9d
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: opensourcepos/module
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/module/vi/
2021-03-30 02:05:35 +02:00
Trần Ngọc Quân
5b715a7e65
Translated using Weblate (Vietnamese)
...
Currently translated at 98.0% (51 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/vi/
2021-03-30 02:05:15 +02:00
Trần Ngọc Quân
7ab6ef758e
Translated using Weblate (Vietnamese)
...
Currently translated at 5.5% (2 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/vi/
2021-03-28 12:20:13 +02:00
Jeroen Peelaerts
d701f770cb
Revert back to jsPDF 1.3.4 ( #3132 )
2021-03-25 23:21:35 +01:00
jekkos
3f5e0b91da
Bump jsPdf to 1.4.2 ( #3132 )
2021-03-25 11:48:43 +01:00
Jeroen Peelaerts
26083171be
Remove unneeded directives ( #3133 )
2021-03-24 23:12:24 +01:00
jekkos
6df9ac6a99
Correct mapping for Bosnian ( #3105 )
2021-03-17 14:34:22 +01:00
Steve Ireland
3b1f4590ca
This is a quick fix to a failure in the Sale.get_info method. ( #3130 )
2021-03-14 18:06:08 -04:00
Steve Ireland
da17356e89
Fix discount round plus some other minor tweaks. ( #3125 )
2021-03-13 19:05:29 -05:00
maktu
34f72d8b6a
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 96.9% (32 of 33 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/es_MX/
2021-03-12 13:16:39 +01:00
Jeroen Peelaerts
05942fe2f3
Add hook to validate save HTTP method ( #3100 )
2021-03-12 13:12:44 +01:00
Jeroen Peelaerts
162ca73ec2
Fix greyed out submit button after validation ( #3122 )
2021-03-10 22:18:12 +01:00
objecttothis
23f720ba40
Correct bug
...
- Corrected problem where clicking New caused future submit clicks to not submit.
2021-02-25 00:02:35 +01:00
objecttothis
ec587cc8a8
Correct formatting errors
2021-02-25 00:02:35 +01:00
objecttothis
d4f273e306
Grey out/disable Submit button after validation to prevent double submissions.
...
Change to a centralized method of greying out the submit button.
Rollback previous decentralized changes.
2021-02-25 00:02:35 +01:00
objecttothis
b0ed2bd34f
Grey out/disable Submit button after validation to prevent double submissions.
2021-02-25 00:02:35 +01:00
Jeroen Peelaerts
3babfd2473
Refer to nginx docker in init_selfcert.sh ( #3106 )
2021-02-22 22:16:07 +01:00
Jeroen Peelaerts
e92a929ae3
Add bosnian translations ( #3105 )
2021-02-22 22:15:16 +01:00
Jeroen Peelaerts
21722f0749
Add Ukrainian translations
...
Signed-off-by: admin@buchach.org.ua
2021-02-21 22:20:51 +01:00
Jeroen Peelaerts
ca730c8f9c
Login to docker hub before pulling images ( #2995 )
2021-02-20 21:35:22 +01:00
FrancescoUK
ea70956229
Merge pull request #3113 from opensourcepos/fix_disc_sales_rounding_2
...
Fix the discount calculation on reports.
2021-02-20 07:13:31 +00:00
Steve Ireland
4b65aa628a
Fix the discount calculation on reports. The rounding was in the wrong place.
2021-02-19 22:00:31 -05:00
jekkos
4d03915612
Build docker container using travis.ci
...
Docker container was not built anymore the default compose file now downloads the image from docker hub.
This means we need to call docker daemon directly and build the Dockerfile ourselves.
2021-02-18 00:52:56 +01:00
Jeroen Peelaerts
6e546a098e
Add mysql volumes + resolve CI_ENV ( #3106 )
2021-02-15 22:50:23 +01:00
FrancescoUK
a87faf8b1d
Merge pull request #3106 from opensourcepos/fix-compose-file
...
Cleanup docker compose files
2021-02-14 21:02:13 +00:00
Jeroen Peelaerts
030ddea814
Make MySQL volume persistent in docker compose
2021-02-14 10:52:23 +01:00
Jeroen Peelaerts
a6cc04f49f
Move ssl setup to separate compose file
2021-02-14 10:44:22 +01:00
FrancescoUK
da17d536ee
Merge pull request #3107 from opensourcepos/fix_discounted_sales_rounding
...
Fix discounted price rounding issues in reports reported in #2995
2021-02-14 06:41:19 +00:00
Steve Ireland
7a4cf1e2bd
Fix discounted price rounding issues in reports
2021-02-13 20:44:56 -05:00
Jeroen Peelaerts
ddcfc0c3f0
Use stable docker hub image in compose.yml
2021-02-13 12:03:40 +01:00
FrancescoUK
4edc44a816
Merge pull request #3102 from albjeremias/revert-3098-fix-vendor-docker
...
Revert "add vendor folder to docker container"
2021-02-12 19:59:22 +00:00
FrancescoUK
03863f3737
Merge pull request #3099 from albjeremias/persistent-db
...
make db persistent..
2021-02-12 19:58:55 +00:00
FrancescoUK
7981d5ae77
Merge pull request #3101 from albjeremias/fix-docker-compose-build
...
Fix docker compose build
2021-02-12 19:58:06 +00:00
Albatroz Jeremias
8e3d90b62e
Revert "add vendor folder to docker container"
2021-02-12 19:05:01 +00:00
Albatroz Jeremias
98363eec4c
add assets building to server install
2021-02-12 18:57:39 +00:00
Albatroz Jeremias
ca98ca89b9
add assets building to local install
2021-02-12 18:57:18 +00:00
Albatroz Jeremias
9e339385a3
adding file for building assets
2021-02-12 18:55:22 +00:00
FrancescoUK
858246b335
Merge pull request #3098 from albjeremias/fix-vendor-docker
...
add vendor folder to docker container
2021-02-12 17:39:44 +00:00
Albatroz Jeremias
51bf757ffc
make db persistent..
...
so it wont be destroyed with every start of docker-compose
2021-02-12 14:38:30 +00:00
Albatroz Jeremias
71f339028a
add vendor folder to docker container
2021-02-12 14:35:29 +00:00
Aril Apria Susanto
b4fc061629
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/id/
2021-02-10 10:44:52 +01:00
Aril Apria Susanto
e2a8c4a615
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/id/
2021-02-10 10:44:52 +01:00
Jeroen Peelaerts
df45d8baf6
Item kit barcode review fixes ( #3090 )
2021-02-10 10:27:17 +01:00
Jeroen Peelaerts
6705e5f259
Add item_number to item kits module
2021-02-10 10:27:17 +01:00
Steve Ireland
68a2292d49
Merge pull request #3026 from opensourcepos/cash-rounding-register
...
Correct issues with cash rounding.
2021-02-08 08:26:47 -05:00
Steve Ireland
c5b22a0300
Improved support for cash rounding transactions.
2021-02-07 13:39:51 -05:00
Jeroen Peelaerts
be7d14c295
Change email address
2021-01-20 20:35:01 +01:00
Jeroen Peelaerts
485c24a123
Fix cookie secure flag ( #3082 )
2021-01-20 20:35:01 +01:00
Jeroen Peelaerts
6f2ac77a6e
Remove unused migration ( #3006 )
2021-01-19 21:47:06 +01:00
jekkos
6e790aeea1
Update README.md
2021-01-19 21:43:39 +01:00
printgeek
2cb65bc2cb
Update Specific_supplier.php
2021-01-19 21:39:20 +01:00
Jeroen Peelaerts
83ab188c8d
Remove duplicate migration ( #3006 )
2021-01-17 11:52:45 +01:00
Jeroen Peelaerts
e20bf34a74
Use longblob for session data storage ( #3006 )
2021-01-17 11:36:06 +01:00
FrancescoUK
0daf08bf94
Merge pull request #3068 from opensourcepos/session-storage-fix
...
Use mediumblob for session data storage (#3006 )
2021-01-04 21:58:31 +00:00
FrancescoUK
9297db9272
Merge pull request #3069 from opensourcepos/License-update
...
Contribution dates rearranged
2021-01-04 17:22:24 +00:00
WShells
d9dbb3d642
Dates fixing
2021-01-03 21:40:23 +02:00
Jeroen Peelaerts
5583a97772
Use mediumblob for session data storage ( #3006 )
2021-01-03 12:05:48 +01:00
WShells
630e38054a
Contribution dates rearranged
...
Updated & Contribution dates rearranged.
2021-01-03 02:25:03 +02:00
hunsly
685033807a
Translated using Weblate (Hungarian)
...
Currently translated at 83.3% (30 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/hu/
2021-01-01 23:04:58 +01:00
hunsly
c38801d8c0
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: opensourcepos/attributes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/attributes/hu/
2021-01-01 23:04:58 +01:00
FrancescoUK
41f218806b
Update README.md badge
2021-01-01 12:03:10 +00:00
FrancescoUK
8e52bd4c1a
Prepare release 3.3.3
2020-12-31 12:13:50 +00:00
FrancescoUK
2a66107cbc
Fix copyright typo and update licenses
2020-12-31 10:00:50 +00:00
FrancescoUK
2dec15c760
Merge pull request #3060 from opensourcepos/fix-table-mobile-glitch
...
Disable resize trigger (#3057 )
2020-12-31 09:34:40 +00:00
FrancescoUK
dcda176614
Remove extra init_resize call
2020-12-31 09:25:22 +00:00
Jeroen Peelaerts
98306e20be
Disable resize trigger ( #3057 )
2020-12-30 22:46:44 +01:00
Jeroen Peelaerts
a8e505d668
Use correct mimetype for invoice logo ( #3019 )
2020-12-29 22:09:27 +01:00
Jeroen Peelaerts
3acf9056ec
Enable PHP rendering in DOMPdf ( #3019 )
2020-12-29 22:09:27 +01:00
FrancescoUK
9e800fa2c3
Register dropdown issue fix and refactoring ( #3055 )
2020-12-29 18:04:50 +00:00
FrancescoUK
5578b40185
Fix sale register issue with due amount and no customer ( #3055 )
2020-12-28 22:59:53 +00:00
FrancescoUK
03e2bed008
Merge pull request #2980 from opensourcepos/bower-update
...
Update bower.json
2020-12-28 16:09:40 +00:00
jekkos
c57a3d8973
Add dev server URL to README.md
2020-12-28 13:58:24 +01:00
jekkos
6178b7b678
Update README.md
2020-12-28 13:55:48 +01:00
Jeroen Peelaerts
4e85b8a677
Remove basic/selected toggle ( #2980 )
2020-12-27 22:00:22 +01:00
Jeroen Peelaerts
23e4deb7c4
se basic as export mode if nothing is selected ( #2980 )
2020-12-26 23:58:35 +01:00
Jeroen Peelaerts
f7d06c1da4
Enable secure flag to make SameSite effective
2020-12-25 22:19:59 +01:00
Jeroen Peelaerts
a25653e3cf
Add cookie workaround for php 7.2 ( #1980 )
2020-12-25 22:19:59 +01:00
Jeroen Peelaerts
49ef2a2105
Enable httpOnly for session cookie only ( #1903 )
2020-12-25 22:19:59 +01:00
Jeroen Peelaerts
57f5d419dd
Add samesite=Strict attribute ( #1980 )
2020-12-25 22:19:59 +01:00
Jeroen Peelaerts
58192f74c0
Export only selection if it's present ( #2980 )
2020-12-25 20:25:15 +01:00
FrancescoUK
d34ff02686
Update supported PHP versions
2020-12-23 12:46:47 +00:00
Jeroen Peelaerts
37cacdbc39
Fix sticky table header alignment ( #2980 )
2020-12-22 23:36:46 +01:00
Jeroen Peelaerts
f312a45469
Update header.php ( #2980 )
2020-12-22 14:16:44 +01:00
Jeroen Peelaerts
18d61188ff
Fix sticky table headers ( #2980 )
2020-12-22 11:41:36 +01:00
FrancescoUK
718729b4c7
Merge pull request #3049 from opensourcepos/fix-form-submission
...
Use jquery.validate to check form submission state (#3044 )
2020-12-21 16:38:56 +00:00
Jeroen Peelaerts
9a881c5232
Add stripes to table again ( #2980 )
2020-12-21 15:40:05 +01:00
Jeroen Peelaerts
82a9348bf9
Use jquery.validate to check form submission state ( #3044 )
2020-12-21 14:17:00 +01:00
Jeroen Peelaerts
76d6ad215e
Fix modal submit after close ( #3044 )
2020-12-20 22:09:20 +01:00
Jeroen Peelaerts
2e2ef29f72
Add chartist bower main override
2020-12-20 12:09:50 +01:00
jekkos
2d21980313
Update bower.json
2020-12-18 13:55:30 +01:00
FrancescoUK
7eb310aac6
Further JS plugins updates
2020-12-17 12:43:52 +00:00
FrancescoUK
c72ef2aae9
Update npm packages
2020-12-17 12:12:07 +00:00
FrancescoUK
c8e7fab9d3
Update js plugins
2020-12-17 12:10:31 +00:00
FrancescoUK
4ca39bfedb
Update grunt and composer
2020-12-17 10:43:00 +00:00
FrancescoUK
6ec7fa822b
Merge pull request #3045 from opensourcepos/fix-double-submit
...
Prevent double submit (#3044 )
2020-12-17 10:37:42 +00:00
Jeroen Peelaerts
fb21359663
Prevent double submit ( #3044 )
2020-12-16 22:50:01 +01:00
FrancescoUK
030b67224e
Reset payments on item remove and sales register mode change ( #3043 )
2020-12-16 15:36:15 +00:00
FrancescoUK
2ce73993c6
Empty payments when Sales register item is edited ( #3042 )
2020-12-16 11:14:29 +00:00
FrancescoUK
0d08e8e15b
Update en-GB sales_lang.php
2020-12-15 11:32:51 +00:00
WebShells
c3150efad5
Minor changes
...
divs and tds fixing
2020-12-15 10:21:00 +01:00
WebShells
303a1442d7
PDF Minor fixes
...
Textarea replacements for better Pdf rendering.
2020-12-15 10:21:00 +01:00
WShells
8a2923854a
Update work_order.php
...
Textarea replacement
2020-12-15 10:21:00 +01:00
WShells
9318adaeb9
Update tax_invoice.php
...
Textarea replacement
2020-12-15 10:21:00 +01:00
WShells
ea64e5bb40
Minor changes
...
Replacing main textareas with fixed divs
2020-12-15 10:21:00 +01:00
WShells
5dd340d84c
Update quote.php
...
Additional spaces removal/alignment
2020-12-15 10:21:00 +01:00
Jeroen Peelaerts
36bab70bfd
Fix default register mode ( #3016 )
2020-12-15 09:54:08 +01:00
Jeroen Peelaerts
e4aa4017ba
Fix invoice_email.css reference ( #3019 )
2020-12-06 23:21:55 +01:00
Jeroen Peelaerts
87ea0c45f7
Update inventory date if sale/receiving is edited ( #2844 )
2020-12-04 23:48:57 +01:00
Jeroen Peelaerts
9ee3557672
Use float precision 1e14 as upper limit for decimal parsing ( #3004 )
2020-12-04 23:48:05 +01:00
Carl Hunter
0fd531c4a2
Increase font size to 150% for total sales and 120% for amount due in sales module for better visibility
2020-12-03 15:49:16 +01:00
Carl Hunter
a54f596ea9
Rename Count column in Payments Summary Report to Transactions
2020-12-03 15:49:16 +01:00
Carl Hunter
d571734f98
Fixed sorting of Quantity column in Customer Summary Report
2020-12-03 15:49:16 +01:00
Carl Hunter
516f8f71da
Added Transactions column to Customer Summary Report
2020-12-03 15:49:16 +01:00
Carl Hunter
5c31fb094b
Fixed typo in Column 3 of Search Suggestions Layout
2020-12-03 15:49:16 +01:00
Carl Hunter
7b20e2c29c
Added wholesale price as an option in search suggestions
2020-12-03 15:49:16 +01:00
Sean Sopheak Rida
d8431b8c00
Translated using Weblate (Central Khmer)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/km/
2020-11-30 18:50:36 +01:00
Sean Sopheak Rida
4484a47d4c
Translated using Weblate (Central Khmer)
...
Currently translated at 1.1% (2 of 179 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/km/
2020-11-27 20:03:38 +01:00
Sean Sopheak Rida
ea523dd765
Translated using Weblate (Central Khmer)
...
Currently translated at 100.0% (69 of 69 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/km/
2020-11-27 20:03:38 +01:00
Sean Sopheak Rida
b0e833f8c4
Translated using Weblate (Central Khmer)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/km/
2020-11-27 20:03:38 +01:00
Jeroen Peelaerts
4e83d967c1
Fix receiving return total ( #3033 )
2020-11-25 20:19:48 +01:00
Jeroen Peelaerts
f01f882bb8
Use float precision 1e14 as upper limit for decimal parsing ( #3004 )
2020-11-24 22:24:50 +01:00
Jeroen Peelaerts
e72dc752bb
Make receivings date readonly ( #2843 )
2020-11-24 22:08:38 +01:00
FrancescoUK
8e054de506
Merge pull request #3024 from ket-c/master
...
Fixed inventory after deleting receiving
2020-11-22 09:02:27 +00:00
Kwaku Amoh-Aboagye
084770643d
Fixed inventory after deleting receiving
...
When you add new/ update an item with a *receiving quantity* more than 1, (Let's say 63), so you then do a new receiving of that particular item, you will get the option to select pack as x63 or x1.
So if you select more that 1 Ship pack (receiving quantity), (in this eg. that is, x63) and finish the receiving successfully, your inventory of that item update with increment of 63 and inventory count details also, good.
But when you realize the receiving you just did had a mistake and you go and delete it, the inventory reduction is wrongly calculated.
Instead of decreasing the inventory by 63, it reduces it by 1.
So i fixed it.
2020-11-20 21:49:52 +01:00
Jeroen Peelaerts
4b2b098a85
Add credit filter for payment types ( #2983 )
2020-11-20 17:24:24 +01:00
Kwaku Amoh-Aboagye
d4d25d240e
Fixed inventory after deleting receiving
...
When you add new/ update an item with a *receiving quantity* more than 1, (Let's say 63), so you then do a new receiving of that particular item, you will get the option to select pack as x63 or x1.
So if you select more that 1 Ship pack (receiving quantity), (in this eg. that is, x63) and finish the receiving successfully, your inventory of that item update with increment of 63 and inventory count details also, good.
But when you realize the receiving you just did had a mistake and you go and delete it, the inventory reduction is wrongly calculated.
Instead of decreasing the inventory by 63, it reduces it by 1.
So i fixed it.
2020-11-20 12:51:35 +00:00
Jeroen Peelaerts
2393c21647
Add FUNDING.yml
2020-11-15 23:43:21 +01:00
Jeroen Peelaerts
e47f3ee571
Fix detailed sales report ( #2967 )
2020-11-15 17:02:00 +01:00
Carl Hunter
5ddda4dc1e
Fix quantity sorting in Categories, Employees and Transactions reports
2020-11-15 15:44:40 +01:00
Carl Hunter
20d78224a4
Added Transactions column to Employees Summary Report and Transactions Summary Report
2020-11-15 15:44:40 +01:00
khao_lek
8571cd1a44
Translated using Weblate (Thai)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/th/
2020-11-12 18:23:47 +01:00
khao_lek
772e809ee6
Translated using Weblate (Thai)
...
Currently translated at 100.0% (33 of 33 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/th/
2020-11-12 18:23:47 +01:00
khao_lek
35b09b2dfb
Translated using Weblate (Thai)
...
Currently translated at 100.0% (179 of 179 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/th/
2020-11-12 18:23:47 +01:00
khao_lek
705fc1dd0b
Translated using Weblate (Thai)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/th/
2020-11-12 18:23:47 +01:00
khao_lek
814cd4503c
Translated using Weblate (Thai)
...
Currently translated at 100.0% (68 of 68 strings)
Translation: opensourcepos/giftcards
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/giftcards/th/
2020-11-12 18:23:47 +01:00
khao_lek
9020e85a17
Translated using Weblate (Thai)
...
Currently translated at 100.0% (35 of 35 strings)
Translation: opensourcepos/employees
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/employees/th/
2020-11-12 18:23:47 +01:00
khao_lek
f0b2f64490
Translated using Weblate (Thai)
...
Currently translated at 100.0% (110 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/th/
2020-11-12 18:23:47 +01:00
Carl Hunter
36b0b28109
Add Retail Price to Items Summary Report
2020-11-07 22:40:07 +01:00
Jeroen Peelaerts
5a124ede99
Fix supplier category after update ( #2972 )
2020-11-07 22:25:56 +01:00
Steve Ireland
a8aafb6f47
Merge pull request #3001 from opensourcepos/theme-tweaker
...
Adjust a theme to handle feature development using non-theme supported classes.
2020-11-05 21:29:50 -05:00
SiuDuck
eae0f8e0cb
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/login
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/login/zh_Hant/
2020-11-03 06:56:02 +01:00
SiuDuck
9542f2dd9c
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (35 of 35 strings)
Translation: opensourcepos/employees
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/employees/zh_Hant/
2020-11-03 06:55:51 +01:00
Steve Ireland
b8eb67a14a
Provides a way to adjust a theme to handle feature development using non-theme supported classes.
2020-11-02 21:02:43 -05:00
SiuDuck
d763dd3665
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (29 of 29 strings)
Translation: opensourcepos/attributes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/attributes/zh_Hant/
2020-11-03 02:40:10 +01:00
SiuDuck
5e3a6f0b07
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (69 of 69 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/zh_Hant/
2020-11-03 02:40:10 +01:00
SiuDuck
d45d57ac4a
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 8.3% (3 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/zh_Hant/
2020-11-03 02:40:10 +01:00
SiuDuck
58476dd3bc
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/zh_Hant/
2020-11-03 02:40:10 +01:00
Jeroen Peelaerts
67e1e4ef19
Add takings filtering on credit card ( #2983 )
2020-11-02 12:42:45 +01:00
Jeroen Peelaerts
8a26195a60
Remove magic quotes check in dompdf helper ( #2996 )
2020-10-29 23:14:44 +01:00
Jeroen Peelaerts
84a3a7e9b7
Fix notifications bis
2020-10-29 23:00:44 +01:00
Jeroen Peelaerts
958469e207
Fix detailed sale report ( #2967 )
2020-10-29 22:14:34 +01:00
Jeroen Peelaerts
47f61e1a30
Detailed sales + receiving fix ( #2967 )
2020-10-29 21:35:04 +01:00
jekkos-t520
f04ff91f44
Fix notifications
2020-10-29 21:07:46 +01:00
FrancescoUK
e6ac4de69d
Merge pull request #2994 from opensourcepos/config-permissions
...
Increase timeout on migration (#2992 )
2020-10-29 19:06:48 +00:00
Jeroen Peelaerts
e1ff739621
Increase timeout on migration ( #2992 )
2020-10-29 00:31:48 +01:00
Jeroen Peelaerts
625fb584ed
Fix migration errors on clean install
2020-10-28 21:31:31 +01:00
Jeroen Peelaerts
fdb8cf8bda
Do not show takings if no grant for sales_reports ( #2981 )
2020-10-28 21:00:16 +01:00
Jeroen Peelaerts
65c84a8857
Fix receivings report in MySQL ( #2967 )
2020-10-28 20:55:57 +01:00
jekkos
c0ac4b3400
Fix invoice email notification
2020-10-22 18:59:34 +02:00
jekkos
3471c0f947
Translated using Weblate (Flemish)
...
Currently translated at 98.3% (175 of 178 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/nl_BE/
2020-10-21 15:23:43 +02:00
jekkos
3aafa1649c
Translated using Weblate (Flemish)
...
Currently translated at 97.2% (35 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/nl_BE/
2020-10-21 15:23:43 +02:00
jekkos
a8b37d36ff
Translated using Weblate (Flemish)
...
Currently translated at 10.2% (8 of 78 strings)
Translation: opensourcepos/taxes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/taxes/nl_BE/
2020-10-21 15:23:43 +02:00
jekkos
5ec7e11c37
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (2 of 2 strings)
Translation: opensourcepos/error
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/error/nl_BE/
2020-10-21 15:23:43 +02:00
jekkos
96c3738a7e
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/nl_BE/
2020-10-21 15:23:43 +02:00
jekkos
1bb72d9fa9
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (69 of 69 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/nl_BE/
2020-10-21 15:23:43 +02:00
jekkos
5737d220eb
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/nl_BE/
2020-10-21 15:23:43 +02:00
jekkos
f40c4aedef
Translated using Weblate (Flemish)
...
Currently translated at 92.7% (102 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/nl_BE/
2020-10-21 15:23:43 +02:00
jekkos-t520
52fc45ae23
Get rid of warnings in Php 7.4
2020-10-18 22:28:08 +02:00
jekkos
44f0036ac0
Bump MariaDB in test container
2020-10-18 00:40:26 +02:00
jekkos
1e47521f55
Bump MariaDB in dev container
2020-10-18 00:39:49 +02:00
FrancescoUK
d840a67150
Merge pull request #2970 from opensourcepos/fix-location-crud
...
Fix stock location crud (#2965 )
2020-10-17 21:39:09 +01:00
FrancescoUK
8a16d5c93c
Merge pull request #2971 from opensourcepos/email-config
...
Email config (#2968 )
2020-10-17 21:37:51 +01:00
FrancescoUK
b3d4ad1a13
Update dockerfile images
2020-10-17 20:18:31 +01:00
FrancescoUK
2b8a2d8bb6
Housekeeping
2020-10-17 20:14:33 +01:00
jekkos
49be337200
Bump php to 7.4 in docker
2020-10-17 01:51:58 +02:00
jekkos-t520
632e25abe3
Email config ( #2968 )
2020-10-17 01:19:12 +02:00
jekkos-t520
760d7490a2
Fix stock location crud ( #2965 )
2020-10-17 01:05:03 +02:00
Jeroen Peelaerts
c0ff849c0f
Do not cast quantity change to int in sale delete ( #2964 )
2020-10-13 21:27:09 +02:00
jekkos-t520
730b9ff366
Fix EAN13 generation for 90 ( #2521 )
2020-10-12 23:06:19 +02:00
Dźmitry Lizunkoŭ
71f12bf205
Translated using Weblate (Russian)
...
Currently translated at 41.0% (32 of 78 strings)
Translation: opensourcepos/taxes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/taxes/ru/
2020-10-09 12:38:56 +02:00
jekkos
8960f57bea
Translated using Weblate (Flemish)
...
Currently translated at 99.2% (138 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/nl_BE/
2020-10-08 20:31:52 +02:00
jekkos
437b4115e6
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/nl_BE/
2020-10-08 20:31:51 +02:00
jekkos
461db7883f
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (68 of 68 strings)
Translation: opensourcepos/giftcards
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/giftcards/nl_BE/
2020-10-08 20:31:51 +02:00
jekkos
f254ecc44a
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/nl_BE/
2020-10-08 20:31:51 +02:00
jekkos
6432843fda
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/nl_BE/
2020-10-08 20:31:51 +02:00
jekkos
ef198ce07a
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (69 of 69 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/nl_BE/
2020-10-08 20:31:51 +02:00
Emin Tufan Çetin
847724c5b3
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (33 of 33 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/tr/
2020-10-08 17:32:50 +02:00
Emin Tufan Çetin
7c173cbfe2
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/tr/
2020-10-08 17:32:49 +02:00
Emin Tufan Çetin
93b3e85b8d
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (78 of 78 strings)
Translation: opensourcepos/taxes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/taxes/tr/
2020-10-08 17:32:49 +02:00
Emin Tufan Çetin
4e83a2d45f
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/tr/
2020-10-08 17:32:49 +02:00
jekkos-t520
eb9e9ddd38
Prepare 3.3.3 release
2020-10-05 22:45:20 +02:00
jekkos-t520
4fa69cbe13
Sync language files
2020-10-05 22:44:10 +02:00
WebShells
12d79b7309
En_GB Fix
...
En_GB Fix
2020-10-02 22:40:52 +02:00
WebShells
2743a6cf15
System Info Permissions
...
System Info Permissions Fix
2020-10-02 22:40:52 +02:00
WShells
9528624c0e
Vulnerability Check
...
Import customers Vulnerability Check
2020-10-02 22:40:52 +02:00
WebShells
382aebcf16
Updates to System Info
...
Updates to System Info Fixing misplaced error messages (language variables).
2020-10-02 22:40:52 +02:00
Anaconda313
1be9fd04c4
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (19 of 19 strings)
Translation: opensourcepos/expenses_categories
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/expenses_categories/az/
2020-09-27 08:35:48 +02:00
Anaconda313
407a7c0132
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/receivings
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/receivings/az/
2020-09-27 08:35:48 +02:00
Anaconda313
8732648fc0
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (69 of 69 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/az/
2020-09-27 08:03:25 +02:00
Anaconda313
a3380a616b
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: opensourcepos/module
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/module/az/
2020-09-27 08:03:25 +02:00
Anaconda313
56487226ef
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (35 of 35 strings)
Translation: opensourcepos/employees
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/employees/az/
2020-09-27 08:03:25 +02:00
Anaconda313
cba6efec73
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: opensourcepos/module
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/module/az/
2020-09-27 07:27:15 +02:00
Anaconda313
7872a4c212
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (139 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/az/
2020-09-27 07:27:14 +02:00
Anaconda313
64ab220c4d
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: opensourcepos/customers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/customers/az/
2020-09-27 07:14:19 +02:00
Anaconda313
f8e9090eb7
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (69 of 69 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/az/
2020-09-27 06:57:57 +02:00
Natig Asadov
edef11ce7f
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (178 of 178 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/az/
2020-09-24 10:44:09 +02:00
jekkos
9ad13bf3e2
Add empty error.log so nginx can log to it ( #2953 )
2020-09-21 11:16:02 +02:00
Natig Asadov
3f70e24780
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/az/
2020-09-20 05:32:34 +02:00
Natig Asadov
5522f8580c
Translated using Weblate (English)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: opensourcepos/bootstrap_tables
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/bootstrap_tables/en/
2020-09-20 05:32:34 +02:00
Natig Asadov
956b54ad27
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (33 of 33 strings)
Translation: opensourcepos/item_kits
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/item_kits/az/
2020-09-20 05:25:16 +02:00
jekkos
1860fa0eaa
Translated using Weblate (Flemish)
...
Currently translated at 89.2% (124 of 139 strings)
Translation: opensourcepos/reports
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/reports/nl_BE/
2020-09-20 05:25:16 +02:00
Natig Asadov
9e2cc52275
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (178 of 178 strings)
Translation: opensourcepos/sales
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/sales/az/
2020-09-20 05:25:16 +02:00
jekkos
3ee277ef70
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: opensourcepos/attributes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/attributes/nl_BE/
2020-09-20 05:25:16 +02:00
Natig Asadov
1b5fe21f00
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (69 of 69 strings)
Translation: opensourcepos/common
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/common/az/
2020-09-20 05:25:16 +02:00
Natig Asadov
dd0b1d4628
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (298 of 298 strings)
Translation: opensourcepos/config
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/config/az/
2020-09-20 05:25:16 +02:00
Natig Asadov
65da551aad
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (78 of 78 strings)
Translation: opensourcepos/taxes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/taxes/az/
2020-09-20 05:25:16 +02:00
Natig Asadov
9aa6406dae
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: opensourcepos/suppliers
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/suppliers/az/
2020-09-20 05:25:16 +02:00
jekkos
d429712c98
Translated using Weblate (Flemish)
...
Currently translated at 6.4% (5 of 78 strings)
Translation: opensourcepos/taxes
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/taxes/nl_BE/
2020-09-20 05:25:16 +02:00
jekkos
8c92cbb277
Remove broken devDependencies badge
2020-09-19 22:58:05 +02:00
jekkos
40f02988d8
Update weblate svg url ( #2914 )
2020-09-19 22:57:23 +02:00
jekkos
9d7519bdc1
Translated using Weblate (Flemish)
...
Currently translated at 97.2% (35 of 36 strings)
Translation: opensourcepos/cashups
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/cashups/nl_BE/
2020-09-19 22:44:24 +02:00
Natig Asadov
4fcfdfd4aa
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (110 of 110 strings)
Translation: opensourcepos/items
Translate-URL: https://translate.opensourcepos.org/projects/opensourcepos/items/az/
2020-09-19 21:51:21 +02:00
Steve Ireland
8e99889174
On document reprint retrieve the taxes originally applied to the reprinted document.
2020-09-19 14:14:01 +02:00
jekkos-t520
30134520f4
Also add files inside of docker folder ( #2953 )
2020-09-17 23:42:47 +02:00
jekkos
0ade104dff
Add docker folder to bintray zip ( #2953 )
2020-09-17 23:33:20 +02:00
jekkos-t520
1709be588f
Bump to 3.4.0 ( #2942 )
2020-09-14 18:17:36 +02:00
SteveIreland
bf88f8fdae
Fixes #2922 feature request by adding the cash rounding type of half-five as a trigger for cash rounding and including the decimals as a factor in the round function.
2020-09-14 18:03:12 +02:00
jekkos
bb309c2579
Revert force flag for docker push/tag ( #2907 )
...
Fix is done in the deploy script now, we explicitly remove the image tag before pull.
2020-09-02 09:34:01 +02:00
jekkos
b8bfe2239e
Revert force flag for docker push/tag ( #2907 )
...
Fix is done in the deploy script now, we explicitly remove the image tag before pull.
2020-09-02 09:33:53 +02:00
jekkos
22324471e7
Use force flag with docker tag and push ( #2907 )
2020-09-01 17:40:57 +02:00
jekkos
5a638aa11c
Remove dist and group tag from .travis.yml
2020-09-01 17:25:51 +02:00
FrancescoUK
f59bffd063
Merge pull request #2939 from jerry2714/fix_lets_encrypt_fail
...
fix Let's Encrypt fail on host install using docker
2020-09-01 15:56:03 +01:00
Jerry Hsu
24687756c1
fix Let's Encrypt fail on host install using docker
...
nginx container keep crashing while installing due to
wrong configuration file and ssl_certificate path mismatch.
- replace ssl_certificate path to match custom domain
- use correct URL to download files from certbot repo
2020-09-01 21:43:55 +08:00
jekkos-t520
b4fadbf84f
Add quote year count to token list ( #2886 )
2020-08-24 13:21:40 +02:00
jekkos-t520
7873110fc5
Code style remarks ( #2886 )
2020-08-24 13:21:40 +02:00
Jeroen Peelaerts
46d957f5b4
Quote improvements
2020-08-24 13:21:40 +02:00
jekkos-t520
458856668d
Fix farsi language bug ( #2926 )
2020-08-22 00:36:31 +02:00
odiea
98bd5ed09c
Merge pull request #2931 from opensourcepos/fix_tax_basis
...
Fixes #2920 issue
2020-08-21 10:15:50 -06:00
SteveIreland
8b22b1d733
Fixes #2920 issue with computing item tax basis with base non-include taxes not factoring including discounts.
2020-08-20 22:03:59 -04:00
objecttothis
b9727d72d7
Allow ON DELETE CASCADE for receiving_id foreign key in links table
2020-08-19 23:01:30 +02:00
FrancescoUK
3e4e6af726
Merge pull request #2926 from Ali-Rnik/i18n-farsi-add
...
Add Farsi language
2020-08-19 21:43:29 +01:00
Ali R. Nik
4aabbaadaf
solved syntax error
2020-08-18 22:01:24 +04:30
Ali R. Nik
a009f1719a
add farsi language
2020-08-18 16:53:34 +04:30
jekkos-t520
cb67b53913
Update risky permission language ( #2885 )
2020-07-30 00:13:42 +02:00
objecttothis
d31307f8f7
Merge pull request #2910 from opensourcepos/remove_colon_limitation
...
Modify input validator
2020-07-29 22:31:47 +04:00
objecttothis
18bdb5d854
Modify input validator
...
- Matched the allowed inputs to what is found in the validator for the
Attribute form (/views/attributes/form.php) for consistency.
- Removed the restriction on colon and added the restriction on
underscore.
- Modified the language line to indicate correct error.
2020-07-28 16:58:43 +04:00
objecttothis
27e297540e
Merge pull request #2909 from opensourcepos/objecttothis-patch-1
...
Update INSTALL.md
2020-07-28 16:35:54 +04:00
objecttothis
88033799a0
Update INSTALL.md
...
Added support for PHP 7.4
2020-07-28 15:31:04 +04:00
jekkos-t520
d9ec9ce772
Add danish, hebrew, armenian as languages
2020-07-28 00:29:25 +02:00
Weblate
b680bea331
Merge branch 'origin/master' into Weblate
2020-07-27 09:28:05 +02:00
Emin Tufan Çetin
9116dc1920
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (297 of 297 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/tr/
2020-07-27 09:28:00 +02:00
jekkos-t520
088f175fd6
Fix escape issue in german
2020-07-26 23:55:55 +02:00
jekkos-t520
8f3d960817
Only check read permissions on import_customers ( #2885 )
2020-07-26 23:45:29 +02:00
jekkos-t520
33734a27ce
Sync translations files
2020-07-26 23:42:42 +02:00
jekkos-t520
dbcf980a2a
Relax required permissions for import_customers ( #2885 )
2020-07-25 11:14:39 +02:00
jekkos-t520
e0709fcebb
Update system_info.php ( #2885 )
2020-07-25 11:14:39 +02:00
Emin Tufan Çetin
b54adc09ad
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (177 of 177 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/tr/
2020-07-24 23:46:00 +02:00
khao_lek
33f87aeff1
Translated using Weblate (Thai)
...
Currently translated at 100.0% (177 of 177 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/th/
2020-07-24 23:46:00 +02:00
khao_lek
ceb6ba49b2
Translated using Weblate (Thai)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/th/
2020-07-24 23:46:00 +02:00
jekkos-t520
4d0b23cd23
Update permissions on application/logs ( #2885 )
2020-07-22 22:04:35 +02:00
jekkos
9cc38765c3
Update system_info.php ( #2885 )
...
@WebShells for you to review, but I think that removing that code will fix #2860
2020-07-21 23:20:52 +03:00
jekkos
b65f68b677
Update README.md
2020-07-15 11:43:15 +02:00
jekkos
702c1dc4df
Update README.md
2020-07-15 10:54:34 +02:00
khao_lek
7040f80b7f
Translated using Weblate (Thai)
...
Currently translated at 100.0% (78 of 78 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/th/
2020-07-14 19:28:58 +02:00
nicmorais
d925388424
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (78 of 78 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/pt_BR/
2020-07-14 19:28:58 +02:00
khao_lek
6c35f4bce0
Translated using Weblate (Thai)
...
Currently translated at 100.0% (177 of 177 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/th/
2020-07-14 19:28:58 +02:00
khao_lek
dd7f8bb508
Translated using Weblate (Thai)
...
Currently translated at 100.0% (128 of 128 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/th/
2020-07-14 19:28:58 +02:00
khao_lek
0ac0d1d06c
Translated using Weblate (Thai)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/th/
2020-07-14 19:28:58 +02:00
khao_lek
5ffd536d4c
Translated using Weblate (Thai)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: ospos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/th/
2020-07-14 19:28:58 +02:00
khao_lek
2f71a6c6bb
Translated using Weblate (Thai)
...
Currently translated at 100.0% (12 of 12 strings)
Translation: ospos/messages
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/messages/th/
2020-07-14 19:28:58 +02:00
khao_lek
e8a15ebd37
Translated using Weblate (Thai)
...
Currently translated at 100.0% (109 of 109 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/th/
2020-07-14 19:28:58 +02:00
khao_lek
8d88e23ab9
Translated using Weblate (Thai)
...
Currently translated at 100.0% (68 of 68 strings)
Translation: ospos/giftcards
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/giftcards/th/
2020-07-14 19:28:58 +02:00
khao_lek
b07b17f1c7
Translated using Weblate (Thai)
...
Currently translated at 100.0% (19 of 19 strings)
Translation: ospos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/th/
2020-07-14 19:28:58 +02:00
khao_lek
ea8b9b4d10
Translated using Weblate (Thai)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: ospos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/th/
2020-07-14 19:28:58 +02:00
khao_lek
b3d7b8d2f7
Translated using Weblate (Thai)
...
Currently translated at 100.0% (7 of 7 strings)
Translation: ospos/enum
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/enum/th/
2020-07-14 19:28:58 +02:00
Emin Tufan Çetin
cf2f29d91b
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (295 of 295 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/tr/
2020-07-14 19:28:58 +02:00
khao_lek
5514cbea79
Translated using Weblate (Thai)
...
Currently translated at 100.0% (295 of 295 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/th/
2020-07-14 19:28:58 +02:00
nicmorais
5e9e09a227
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (295 of 295 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/pt_BR/
2020-07-14 19:28:58 +02:00
khao_lek
27659f8098
Translated using Weblate (Thai)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/th/
2020-07-14 19:28:58 +02:00
Emin Tufan Çetin
aed4163c51
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/tr/
2020-07-14 19:28:58 +02:00
khao_lek
09e3e56245
Translated using Weblate (Thai)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/th/
2020-07-14 19:28:58 +02:00
nicmorais
edf2258463
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/pt_BR/
2020-07-14 19:28:58 +02:00
jekkos-t520
0cb20b6384
Clear work order number during clear_all ( #2820 )
2020-07-05 23:13:36 +02:00
jekkos-t520
10bc0b5720
Fix custom invoice number ( #2820 )
2020-07-05 23:13:36 +02:00
Weblate
7704d5ec6f
Merge branch 'origin/master' into Weblate
2020-07-01 11:18:43 +02:00
Jose Cruz Moreira Galvan
b08f087306
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (78 of 78 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/es_MX/
2020-07-01 11:18:40 +02:00
Jose Cruz Moreira Galvan
0484cdd7d6
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (177 of 177 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/es_MX/
2020-07-01 11:18:27 +02:00
Antonio Morales
e7deac8a00
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 52.9% (36 of 68 strings)
Translation: ospos/giftcards
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/giftcards/es_MX/
2020-07-01 11:18:14 +02:00
Jose Cruz Moreira Galvan
d0e44a2fc5
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (292 of 292 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/es_MX/
2020-07-01 11:17:58 +02:00
SteveIreland
b7fcc94eb0
Fixes #2872 SQL Error in Sale.php
2020-07-01 08:58:04 +02:00
objecttothis
a11f25e983
Update Item.php
...
Set group_concat_max_len session variable to prevent count totals at the bottom of the tables becoming `1 to null of null items` when database includes significant number of item rows.
2020-06-29 11:23:10 +02:00
objecttothis
85fea45def
Merge pull request #2780 from opensourcepos/fix-included-destination-tax
...
Fix included destination tax
2020-06-29 09:25:06 +04:00
SteveIreland
6d91ae3845
Fix included destination tax
2020-06-28 18:12:46 -04:00
FrancescoUK
be44fb2aa7
Merge pull request #2870 from opensourcepos/fix-invoice-field
...
Fix invoice field visibility (#2820 )
2020-06-27 19:02:26 +01:00
Jeroen Peelaerts
fa15b1e94b
Fix invoice field visibility ( #2820 )
2020-06-27 17:36:17 +02:00
objecttothis
535df2b706
Merge pull request #2840 from opensourcepos/System-Info
...
Minor Changes & Footer Update
2020-06-27 15:27:23 +04:00
objecttothis
5fa4e18eb7
Update common_lang.php
...
Changes to British English at @daN4cat request.
2020-06-27 15:08:43 +04:00
objecttothis
581ca8745a
Update common_lang.php
...
Inserting inline variable and resorted variables for ease of finding.
2020-06-27 14:57:25 +04:00
objecttothis
687ae74a62
Update footer.php
...
replaced " with ' to prevent the string from being parsed for variables unnecessarily.
2020-06-27 14:54:39 +04:00
objecttothis
f3ee3d7dbd
Update footer.php
...
Corrected code to send the ending year to the language line for RTL languages to juggle.
2020-06-27 14:53:28 +04:00
Emin Tufan Çetin
fb0cee0e74
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (292 of 292 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/tr/
2020-06-17 20:41:36 +02:00
jekkos
1bd9501e76
Translated using Weblate (Flemish)
...
Currently translated at 93.1% (27 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/nl_BE/
2020-06-09 14:33:53 +02:00
Weblate
3fa55b2ff4
Merge branch 'origin/master' into Weblate
2020-06-09 14:19:16 +02:00
Corvin
633a888ae4
Translated using Weblate (Hungarian)
...
Currently translated at 29.5% (13 of 44 strings)
Translation: ospos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/hu/
2020-06-09 14:19:15 +02:00
Emin Tufan Çetin
12125dfbd7
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (291 of 291 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/tr/
2020-06-09 14:18:59 +02:00
Andrés Sánchez
06aa032d45
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (291 of 291 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/es/
2020-06-09 14:18:52 +02:00
mazbrili
46f0af4d48
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (291 of 291 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/id/
2020-06-09 14:18:44 +02:00
Corvin
70857ba358
Translated using Weblate (Hungarian)
...
Currently translated at 27.7% (10 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/hu/
2020-06-09 14:18:29 +02:00
jekkos
5cf0d5faeb
Added translation using Weblate (Armenian)
2020-06-09 14:18:13 +02:00
FrancescoUK
d6df082d32
Merge pull request #2852 from opensourcepos/constant_location_patch
...
Update constants.php
2020-06-04 09:16:10 +01:00
objecttothis
2cd90ccb17
Update constants.php
...
Correcting missing '
2020-06-04 11:11:50 +04:00
objecttothis
63ea90f537
Merge pull request #2849 from opensourcepos/constant_location_patch
...
Change the locations of global constants to make them global across files
2020-06-03 22:01:41 +04:00
objecttothis
a3fb05b566
Change the locations of global constants to make them global across
...
files
- Items Constants
- Attributes Constants
- Sale Constants
2020-06-03 14:15:05 +04:00
WebShells
8fc27d88e0
Colors for User Setup section
...
Colors for User Setup section
2020-05-27 10:16:46 +03:00
WebShells
b2bb4d8b62
PHP Declaration
2020-05-27 10:10:52 +03:00
WebShells
2fd50471de
Footer in License Section
2020-05-27 09:24:49 +03:00
WebShells
ecff38d5bb
Language Updates
2020-05-27 09:06:42 +03:00
WebShells
026114457b
Minor Changes & Footer Update
...
Added timezone checkup to system info
1st Case:
Timezones are the same ( no warning )
2nd Case:
Difference in timezones: Warning will be displayed.
Simplifying OSPOS footer and replacing git project link by OSPOS website.
2020-05-27 08:56:51 +03:00
objecttothis
d5659b5131
Merge pull request #2816 from opensourcepos/category_as_dropdown
...
Category as dropdown
2020-05-20 14:08:32 +04:00
objecttothis
979ec9fe02
Merge branch 'master' into category_as_dropdown
2020-05-20 13:55:41 +04:00
objecttothis
89a56820d2
Formatting Corrections
2020-05-20 13:52:54 +04:00
objecttothis
145f49d247
Code Review Changes
...
- Refactored code to include constants
- Fixed comment formatting issues
2020-05-20 13:48:24 +04:00
objecttothis
a155399ec0
Merge branch 'master' into category_as_dropdown
2020-05-19 18:14:31 +04:00
objecttothis
f5424a3ed2
Create Global Constants to clarify code
2020-05-19 18:06:20 +04:00
objecttothis
35023e648f
Force Travis-CI to rebuild to demo
2020-05-14 19:35:55 +04:00
jekkos
00020ba7dc
Fix token_lib regresssion
2020-05-13 13:53:14 +02:00
jekkos-t520
3854587907
Fix default quantity #2829
2020-05-13 13:53:14 +02:00
objecttothis
ba6826a31e
Merge pull request #2824 from opensourcepos/custom_image_upload_restrictions
...
Custom image upload restrictions
2020-05-08 23:59:22 +04:00
objecttothis
a154a8705c
Fixed indentation issue
...
Fixed indentation issue
2020-05-08 23:58:40 +04:00
WShells
e6dad3eb81
Updating System Info Section ( #2805 )
...
* Updating Permissions Checkup & Fixed Clipboard issue on Mozilla and Other Browsers
* Re-ordering Tabs & Minor Changes
- Re-ordering Configuration Tabs, Merging Configuration/Settings tabs under Setup & Conf
- Minor Changes to Setup & Conf
- Translations Added
* Indent
* Minor Changes
* Dir Fix
* Fixing Listing Sign
* Fixing Listing Sign in Warning messages
2020-05-08 20:14:48 +03:00
objecttothis
b3b7b227a9
Fixed problem with Images not deleting
2020-05-08 16:52:35 +04:00
objecttothis
f4a941e209
Removed duplicate variable
2020-05-08 16:08:49 +04:00
objecttothis
75f45bdb47
Corrected variable names
2020-05-08 16:04:37 +04:00
objecttothis
8a9edb8963
Removing variable not yet merged into the master from another PR
2020-05-08 16:02:02 +04:00
WShells
6f78672f82
Avatar Permissions
...
Editing Avatar file permissions to display 750 in place of 755 as our security check is set.
2020-05-08 14:59:42 +03:00
objecttothis
68a2489e13
Add Save logic
...
- Corrected minimum image size value in migration script
- Added save logic to save_general() in Config controller
- Added logic in the index() of the Config controller to properly prep
allowed_image_types data
2020-05-08 15:58:37 +04:00
objecttothis
9b18072f1e
migration corrections
2020-05-08 14:23:12 +04:00
objecttothis
59142d9f69
Database logic additions
...
- Migration script to create default values
- Corrected naming of variables in general_config.php
- Replaced hardcoded values with db variables
2020-05-08 14:22:49 +04:00
objecttothis
a79e9dd4cb
Changes to allow custom image restrictions in view.
...
- Added the fields to the general config view.
- Added Language lines to en_US and en_GB
- Corrected formatting of Columns in search suggestion layout
2020-05-08 13:15:13 +04:00
WShells
6eb5ed9381
Fixing TR Issues
...
Fixing TR Issues
2020-05-07 17:57:09 +03:00
Pete Ongsuwan
bfa42dba4a
Translated using Weblate (Thai)
...
Currently translated at 92.8% (259 of 279 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/th/
2020-05-07 08:36:24 +02:00
Pete Ongsuwan
54d07e9063
Translated using Weblate (Thai)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/th/
2020-05-07 08:36:09 +02:00
Robby Triadi Susanto
e830595f43
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (78 of 78 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/id/
2020-05-05 17:47:31 +02:00
Pete Ongsuwan
79632731f8
Translated using Weblate (Thai)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/th/
2020-05-05 17:47:31 +02:00
Robby Triadi Susanto
5ed8384d45
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (177 of 177 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/id/
2020-05-05 17:47:31 +02:00
Pete Ongsuwan
307407d732
Translated using Weblate (Thai)
...
Currently translated at 100.0% (109 of 109 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/th/
2020-05-05 17:47:31 +02:00
khao_lek
a0b885d5ca
Translated using Weblate (Thai)
...
Currently translated at 98.5% (67 of 68 strings)
Translation: ospos/giftcards
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/giftcards/th/
2020-05-05 17:47:31 +02:00
Pete Ongsuwan
5bf2f2ec43
Translated using Weblate (Thai)
...
Currently translated at 86.7% (242 of 279 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/th/
2020-05-05 17:47:31 +02:00
Pete Ongsuwan
a5f9185308
Translated using Weblate (Thai)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/th/
2020-05-05 17:47:31 +02:00
Pete Ongsuwan
c9535653c9
Translated using Weblate (Thai)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/bootstrap_tables
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/bootstrap_tables/th/
2020-05-05 17:47:31 +02:00
Pete Ongsuwan
249aa091fd
Translated using Weblate (Thai)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/th/
2020-05-05 17:47:31 +02:00
Pete Ongsuwan
569e09e741
Translated using Weblate (Thai)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/th/
2020-05-05 17:47:31 +02:00
objecttothis
5a58af7a01
Removing LEFT JOIN of supplier table
...
per #2788 the Supplier table results from Item->get_all() and Item->get_info() are not used anywhere and causing a bug where the duplicate fields between the items table and the suppliers table (deleted and category) are returning just one value to the results. This creates the undesired effect of expecting items.deleted and items.category but getting values from suppliers.deleted and suppliers.category.
2020-05-05 15:01:32 +02:00
objecttothis
9557f1c310
Forgotten commit
...
- This was correct in my code base. I just forgot to commit it.
2020-05-05 14:47:42 +04:00
objecttothis
ee860e3b71
Disable fields on category_dropdown attribute view
...
- These changes prevent the type of attribute to be changed from
dropdown for categories as dropdown.
2020-05-05 14:06:11 +04:00
objecttothis
1dc3e15a55
Implement dropdown into item form view
...
- Created business logic in view to show dropdown if enabled
- Created business logic in controller to calculate key/value pairs of
dropdown
- Adjusted attribute model get_definition values to send values also if
definition_id is -1 or > 0 but not 0 which is what we are now using as
no definition instead of -1
2020-05-05 11:59:03 +04:00
objecttothis
d5d6d6668c
Corrected errors
2020-05-04 17:19:03 +04:00
objecttothis
0051fa87ec
Corrected errors
2020-05-04 17:18:48 +04:00
objecttothis
15a987cfd9
Adjust functions related to attributes
2020-05-04 17:00:02 +04:00
objecttothis
96bfa330ba
Added the creation and removal of ospos_category attribute
...
- Added undelete function in Attribute model which could be useful for
adding the ability to restore attributes once deleted.
- Added business logic to Config controller save_general to
create/remove the attribute when the box is checked or unchecked.
2020-05-04 16:45:58 +04:00
objecttothis
231fe483d9
Add Config to enable show Category as dropdown
...
- Added the config item and label to view.
- Added the language line in en_US and en_GB.
- Added save business to Config controller.
- Fixed formatting issues in Config controller (removed tabs on blank
lines)
2020-05-04 15:23:50 +04:00
jekkos-t520
431074af58
Fix token lib test
2020-05-02 18:06:28 +02:00
objecttothis
06d73959af
Merge pull request #2814 from opensourcepos/attr-dropdown-sort-patch
...
Added ORDER BY to sort various dropdowns
2020-05-01 17:54:01 +04:00
objecttothis
06eebc2ad3
Make DROPDOWN values sorted by alphabet.
2020-05-01 17:51:13 +04:00
objecttothis
42f8d71404
Added ORDER BY to sort various dropdowns
...
This sorts alphabetically:
- Attributes on the Attribute->Item view
- Dropdowns for adding attributes in the Attribute->Item view
- Dropdowns for the attribute values themselves.
2020-04-30 17:12:59 +04:00
Pete Ongsuwan
9b4621d3b8
Translated using Weblate (Thai)
...
Currently translated at 74.9% (209 of 279 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/th/
2020-04-29 12:39:02 +02:00
khao_lek
6b830d7acd
Translated using Weblate (Thai)
...
Currently translated at 74.9% (209 of 279 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/th/
2020-04-29 12:38:56 +02:00
jekkos-t520
99fb55051a
Divide quantity and price according to configured precision
2020-04-23 22:50:41 +02:00
jekkos-t520
6bd0d6277b
Move parsing to token_lib
2020-04-23 22:50:41 +02:00
FrancescoUK
494b112424
Merge pull request #2806 from opensourcepos/values-keyword-patch-checkbox
...
Values is a mysql keyword
2020-04-22 18:55:59 +01:00
objecttothis
b0ba354b31
Values is a mysql keyword
...
Corrected the name of the alias from values to vals to prevent DB errors on conversion from DROPDOWN to CHECKBOX.
2020-04-22 13:37:31 +04:00
Weblate
e27c703026
Merge branch 'origin/master' into Weblate
2020-04-20 15:41:42 +02:00
khao_lek
822cd9f4ce
Translated using Weblate (Thai)
...
Currently translated at 80.7% (42 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/th/
2020-04-20 15:41:41 +02:00
Emil Ebsen
a964c9b7d0
Added translation using Weblate (Danish)
2020-04-20 15:41:24 +02:00
WShells
7e49a7b82a
Indent...
2020-04-18 05:56:44 +03:00
WShells
5fe3b2ff00
Updating Dir/File Location
2020-04-18 05:48:50 +03:00
WShells
c1b2e0cec6
Clipboard.js
2020-04-18 05:47:51 +03:00
WShells
11f2f1eafa
Updating Copy to Clipboard
...
Updating Copy to Clipboard Function Supporting Mozilla Firefox Again
2020-04-18 05:46:18 +03:00
FrancescoUK
60d2dfcf1e
Merge pull request #2791 from blutme/patch-1
...
loginButton Update login.php
2020-04-13 06:20:15 +01:00
blutme
64b2843cf6
loginButton Update login.php
...
the "loginButton" valule had no translation when changing languages.
2020-04-12 18:27:08 -05:00
Weblate
d716cf9a48
Merge branch 'origin/master' into Weblate
2020-04-10 19:00:22 +02:00
Emil Ebsen
01bb4e1b7a
Added translation using Weblate (Danish)
2020-04-10 19:00:18 +02:00
WShells
3572ed1f86
Adding Andriux
...
...
2020-04-10 05:27:02 +03:00
objecttothis
66d426a1b6
Merge pull request #2739 from opensourcepos/pos_bool
...
Implement CHECKBOX attribute type
2020-04-08 15:37:12 +04:00
Weblate
62946906d8
Merge branch 'origin/master' into Weblate
2020-04-07 10:28:36 +02:00
Emil Ebsen
20e0eae9bd
Translated using Weblate (Danish)
...
Currently translated at 99.6% (278 of 279 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/da/
2020-04-07 10:28:35 +02:00
Emil Ebsen
cf4a794c51
Translated using Weblate (Danish)
...
Currently translated at 97.2% (35 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/da/
2020-04-07 10:28:16 +02:00
JOHN PAPOULAKOS
748c48b43f
Translated using Weblate (Greek)
...
Currently translated at 65.5% (19 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/el/
2020-04-07 10:28:01 +02:00
Emil Ebsen
03f2a0a921
Translated using Weblate (Danish)
...
Currently translated at 95.5% (64 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/da/
2020-04-07 10:27:46 +02:00
Emil Ebsen
d2409bf952
Added translation using Weblate (Danish)
2020-04-07 10:27:31 +02:00
jekkos-t520
783de92707
Revert migration version
2020-04-06 21:19:37 +02:00
jekkos-t520
5db1c7a813
Make migration logging more verbose
2020-04-04 17:03:21 +02:00
Emil Ebsen
5720f2b893
Added translation using Weblate (Danish)
2020-04-01 22:59:18 +02:00
Emil Ebsen
5286f80748
Added translation using Weblate (Danish)
2020-04-01 17:51:04 +02:00
Emil Ebsen
8a19bf3f4a
Added translation using Weblate (Danish)
2020-03-31 19:41:34 +02:00
Emil Ebsen
c2a13fce9c
Added translation using Weblate (Danish)
2020-03-28 17:11:15 +01:00
Emil Ebsen
b1973f26c9
Added translation using Weblate (Danish)
2020-03-27 14:46:13 +01:00
objecttothis
b5265870be
More descriptive alias
2020-03-24 14:21:57 +04:00
objecttothis
4584b7eace
Final indentation and formatting fixes
2020-03-24 14:17:36 +04:00
objecttothis
8a0c88b11c
More indentation corrections
2020-03-24 14:13:08 +04:00
objecttothis
3281fc9bb0
Correct indentation problems
2020-03-24 14:04:04 +04:00
objecttothis
971ae5ec19
Correcting indentation problems
2020-03-24 13:18:35 +04:00
objecttothis
fb9fec1a10
Merge branch 'master' into pos_bool
2020-03-18 16:19:45 +04:00
objecttothis
c4c475b51f
Updated CSV import to handle checkboxes
...
0, FALSE values create attributes marked as "unchecked"
NULL, "" and spaces do not create an attribute
1, TRUE and ANY other value creates an attribute and marks as checked.
Blank lines in CSV files are skipped with no error.
2020-03-18 15:49:49 +04:00
Emil Ebsen
e7ec8aa49f
Added translation using Weblate (Danish)
2020-03-16 13:56:49 +01:00
Weblate
1be27549df
Merge branch 'origin/master' into Weblate
2020-03-16 13:35:34 +01:00
khao_lek
8e979deb99
Translated using Weblate (Thai)
...
Currently translated at 68.4% (191 of 279 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/th/
2020-03-16 13:35:33 +01:00
Emil Ebsen
5ba9746264
Translated using Weblate (Danish)
...
Currently translated at 50.0% (18 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/da/
2020-03-16 13:35:20 +01:00
Emil Ebsen
20e4040d02
Added translation using Weblate (Danish)
2020-03-16 13:35:03 +01:00
FrancescoUK
425bee0ba1
Merge pull request #2764 from opensourcepos/fix-attribute-search
...
Fix attribute search (#2723 )
2020-03-14 07:22:04 +00:00
FrancescoUK
5fe7186571
Merge pull request #2763 from opensourcepos/currency-format-test
...
Add unit test for locale_helper (#2748 )
2020-03-14 07:20:59 +00:00
FrancescoUK
3382610871
Merge pull request #2760 from opensourcepos/attribute-colon-patch
...
Removing the restriction for colons in the name
2020-03-14 07:18:44 +00:00
jekkos-t520
0f2bafc7dd
Fix attribute search ( #2723 )
2020-03-14 01:44:08 +01:00
jekkos-t520
ea85a85518
Add unit test for locale_helper ( #2748 )
2020-03-13 23:12:56 +01:00
jekkos
531035fef2
Update invalid chars
2020-03-13 22:41:42 +01:00
FrancescoUK
1d39ec3aa5
Merge pull request #2762 from opensourcepos/amp-attribute-bug-patch
...
Correct a bug causing & to break in POST
2020-03-13 18:11:24 +00:00
objecttothis
ecb21d2d5e
Same correction for removing attribute value
2020-03-13 16:38:18 +04:00
objecttothis
a2a5db8901
Correct a bug causing & to break in POST
...
See #2758 for details
2020-03-13 16:32:39 +04:00
objecttothis
04ade7ab0b
Removing the restriction for colons in the name
...
Please see #2665
2020-03-13 13:22:23 +04:00
Weblate
e579029ded
Merge branch 'origin/master' into Weblate
2020-03-11 17:26:52 +01:00
Emil Ebsen
be06cec80d
Translated using Weblate (Danish)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/bootstrap_tables
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/bootstrap_tables/da/
2020-03-11 17:26:50 +01:00
Emil Ebsen
ba1ef472e6
Added translation using Weblate (Danish)
2020-03-11 17:26:34 +01:00
jekkos-t520
45894857a6
Fix tests
2020-03-11 00:46:46 +01:00
jekkos-t520
4f60465fa0
Revert barcode rework
2020-03-11 00:15:37 +01:00
objecttothis
cefd287668
Resolve bug not updating attributes correctly
...
Prior to this fix, if the attribute was of DECIMAL or DATE type and the action was an UPDATE, then it would try to update the attribute_value, not the corresponding attribute_decimal or attribute_date.
2020-03-10 09:21:09 +01:00
Weblate
009905e405
Merge branch 'origin/master' into Weblate
2020-03-09 22:48:34 +01:00
Emin Tufan Çetin
bc38e94f42
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (78 of 78 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/tr/
2020-03-09 22:48:34 +01:00
Johntini
ff8625fbe7
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (78 of 78 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/es/
2020-03-09 22:48:20 +01:00
Qbin
a5440f0443
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 42.3% (33 of 78 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/zh_Hans/
2020-03-09 22:48:06 +01:00
khao_lek
5692ae4902
Translated using Weblate (Thai)
...
Currently translated at 84.1% (149 of 177 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/th/
2020-03-09 22:47:43 +01:00
Johntini
1cf5cbadd0
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (177 of 177 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/es/
2020-03-09 22:47:35 +01:00
Qbin
82351243f9
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 98.0% (51 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/zh_Hans/
2020-03-09 22:47:20 +01:00
Qbin
d47e687337
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/zh_Hans/
2020-03-09 22:47:04 +01:00
khao_lek
3700674045
Translated using Weblate (Thai)
...
Currently translated at 100.0% (35 of 35 strings)
Translation: ospos/employees
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/employees/th/
2020-03-09 22:46:50 +01:00
Johntini
b646e78ba6
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (278 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/es/
2020-03-09 22:46:35 +01:00
Emil Ebsen
b1cb951a9e
Translated using Weblate (Danish)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/da/
2020-03-09 22:46:21 +01:00
Jintao-Yao
f30e085d78
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/zh_Hans/
2020-03-09 22:46:13 +01:00
khao_lek
91c6508317
Translated using Weblate (Thai)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/th/
2020-03-09 22:46:00 +01:00
Qbin
d341f1987a
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/zh_Hans/
2020-03-09 22:45:52 +01:00
Emil Ebsen
34b7e68f04
Added translation using Weblate (Danish)
2020-03-09 22:45:33 +01:00
jekkos-t520
858320fe20
Disable attribute sort ( #2722 )
2020-03-09 19:54:14 +01:00
jekkos-t520
4300f0a3c6
Rework barcode format parser
2020-03-08 20:15:22 +01:00
jekkos-t520
7c33159a38
Fix config.php in testing mode
2020-03-07 15:21:45 +01:00
jekkos-t520
9583483543
Update after_success line
2020-03-07 12:59:07 +01:00
jekkos
ba19bc5ad6
Update INSTALL.md
2020-03-07 12:51:28 +01:00
jekkos
a9b63fa360
Update INSTALL.md
2020-03-07 12:50:07 +01:00
jekkos-t520
dbe525a724
Run regular container build before push
2020-03-07 00:13:41 +01:00
jekkos-t520
7a1891e5e8
Try to fix docker push ( #2751 )
2020-03-06 23:52:48 +01:00
jekkos-t520
c6048c8461
Set global variables in .travis.env
2020-03-06 23:36:01 +01:00
jekkos-t520
1c76edfc01
Fix config.php ( #2751 )
2020-03-06 23:22:34 +01:00
jekkos-t520
eae2dd483b
Remove hebrew (no more official CI support)
2020-03-06 23:00:46 +01:00
jekkos-t520
a8d0a376f3
Remove failing test + fetch script from github
2020-03-06 21:32:51 +01:00
jekkos-t520
be2ff4bee4
Don't expose port + set mysql hostname
2020-03-06 21:32:51 +01:00
jekkos-t520
609cb14cda
Upgrade compose version
2020-03-06 21:32:51 +01:00
jekkos-t520
2d57326779
Run tests using travis-CI
2020-03-06 21:32:51 +01:00
jekkos-t520
2eec0ae6f0
Fix unit test
2020-03-06 21:32:51 +01:00
jekkos-t520
99bd6570b9
Load testing dotenv if environment is set
2020-03-06 21:32:51 +01:00
jekkos-t520
2110692664
Overwrite backupGlobals + base_url generation in testing mode
2020-03-06 21:32:51 +01:00
jekkos-t520
bc4a5570a5
Disable globals + fixup base_url
2020-03-06 21:32:51 +01:00
jekkos-t520
d8f784c3f0
Align mariadb versions for compose files
2020-03-06 21:32:51 +01:00
jekkos-t520
7d94ba7817
Make multistage docker build
2020-03-06 21:32:51 +01:00
FrancescoUK
f3e87d3c3c
Revert change causing issues with Detailed Transactions
2020-03-06 19:56:48 +00:00
Weblate
f4487947c5
Merge branch 'origin/master' into Weblate
2020-03-02 22:10:46 +01:00
Qbin
72915d84ef
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 66.1% (117 of 177 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/zh_Hans/
2020-03-02 22:10:45 +01:00
Qbin
62eae20cfa
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 55.7% (29 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/zh_Hans/
2020-03-02 22:10:19 +01:00
Thomas Arleth Pedersen
3e698f96dc
Added translation using Weblate (Danish)
2020-03-02 22:09:56 +01:00
objecttothis
ea7cb48f1c
CHECKBOX Attribute type
...
Conversion from DROPDOWN or TEXT logic
2020-03-02 14:17:48 +04:00
FrancescoUK
cdaf88ef28
Fix Employee autocomplete bug ( #2736 )
2020-03-01 17:34:39 +00:00
jekkos
822b7211ec
Install dev dependencies again
2020-02-28 15:36:23 +01:00
objecttothis
d7a59221fc
Fix problem with unchecked attributes
...
Previously, if the attribute was unchecked, the form wouldn't submit the
attribute and the model/controller would delete the attribute_link from
the item. A hidden input type with value 0 occuring before the checkbox
fixes this problem.
2020-02-27 12:24:04 +04:00
jekkos-t520
b8174a85ee
Move dotenv to depdencies ( #2737 )
2020-02-26 23:41:33 +01:00
jekkos-t520
519242aead
Set copy permissions to 775
2020-02-25 22:39:17 +01:00
objecttothis
ff79b73e34
Implement CHECKBOX attribute type
...
Attribute Configuration view
Attributes section of item management view
Attributes section of CSV item import
2020-02-25 15:44:49 +04:00
Weblate
c8b49de7d1
Merge branch 'origin/master' into Weblate
2020-02-24 22:26:53 +01:00
Emin Tufan Çetin
cd9e05dac1
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (177 of 177 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/tr/
2020-02-24 22:26:52 +01:00
Fredrik Angell Moe
1488453ffa
Added translation using Weblate (Norwegian Bokmål)
2020-02-24 22:26:34 +01:00
FrancescoUK
c5838ba098
Merge pull request #2727 from opensourcepos/add_tax_group_constraint
...
Add tax group constraint
2020-02-23 17:51:39 +00:00
jekkos-t520
b88b60597b
Disable tests in build
2020-02-22 01:14:32 +01:00
jekkos-t520
3ceb2569cf
Use private docker buildbox
2020-02-22 01:08:30 +01:00
jekkos
556335918b
Do not install dev dependencies
2020-02-21 22:41:02 +01:00
FrancescoUK
7145ad9eec
Fix Travis composer docker error ( #2729 )
2020-02-18 21:03:06 +00:00
SteveIreland
57dc2d2b11
Add unique contraint to tax group
2020-02-16 21:08:58 -05:00
FrancescoUK
bf88927e66
Fix README sentence
2020-02-16 14:00:40 +00:00
FrancescoUK
efd53cbccf
Add Employee name to suspended form ( #2678 )
2020-02-16 13:46:25 +00:00
FrancescoUK
e0620e1a3e
Add more onClick select the text content
2020-02-15 22:44:03 +00:00
FrancescoUK
622fdc27aa
Fix detailed reports error with attributes ( #2721 )
2020-02-15 22:01:51 +00:00
Emin Tufan Çetin
7a7d1ed44e
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (176 of 176 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/tr/
2020-02-15 01:18:50 +01:00
Josué Arreola
161bbb4e07
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 98.8% (174 of 176 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/es_MX/
2020-02-15 01:18:50 +01:00
Josué Arreola
035f2b7982
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (19 of 19 strings)
Translation: ospos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/es_MX/
2020-02-15 01:18:50 +01:00
Nguyen Tuan Anh
4234c4bc3a
Translated using Weblate (Vietnamese)
...
Currently translated at 99.2% (277 of 279 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/vi/
2020-02-15 01:18:50 +01:00
jekkos
fa9f0ade55
Don't close bug tickets direclty
2020-02-15 01:04:00 +01:00
jekkos
0bbb6adaba
Add stale bot configuration
2020-02-15 01:00:37 +01:00
FrancescoUK
8452959388
Merge pull request #2720 from opensourcepos/favicon.ico-correction-patch
...
uploaded the png when I should have uploaded the ico
2020-02-12 15:21:13 +00:00
objecttothis
d1ba4bc875
corrected favicon.ico
2020-02-12 18:03:17 +04:00
objecttothis
fbd895d67c
uploaded the png when I should have uploaded the ico
2020-02-12 18:01:24 +04:00
FrancescoUK
ca2907d6a6
Merge pull request #2708 from opensourcepos/fix-inv-summary-regression
...
Fix inventory summary regression (#2702 )
2020-02-05 20:54:41 +00:00
FrancescoUK
6b07d8ee21
Fix wrong tax amount with tax included
2020-02-04 21:25:37 +00:00
jekkos
8d97efd52d
Fix inventory summary regression ( #2702 )
2020-02-04 18:07:52 +01:00
FrancescoUK
864b024f31
Merge pull request #2709 from opensourcepos/fix-location-permissions
...
Check if grant for module exists (#2702 )
2020-01-31 06:12:20 +00:00
jekkos
8d6a23d0e7
Check if grant for module exists ( #2702 )
2020-01-30 08:56:39 +01:00
jekkos
4722a5600f
Do not show deleted items in low inventory report ( #2702 )
2020-01-29 23:26:08 +01:00
FrancescoUK
aba9c2bc30
Fix Customer delete issue
2020-01-26 09:12:02 +00:00
FrancescoUK
dea21f6d38
Revert "set customer date to be the first sale one if time 0"
...
This reverts commit 3cb1bf6b87 .
2020-01-25 23:27:22 +00:00
FrancescoUK
3cb1bf6b87
set customer date to be the first sale one if time 0
2020-01-25 23:22:06 +00:00
FrancescoUK
dfe66e8083
Fix Customer delete error
2020-01-25 21:11:30 +00:00
FrancescoUK
285b66406b
Fix Sale_lib error with PHP 7.2 ( #2648 )
2020-01-25 20:57:43 +00:00
FrancescoUK
99d861535e
Add allow sales change price permission ( #2653 )
2020-01-25 17:22:26 +00:00
FrancescoUK
ba40783017
Fix graphical payment report bug
2020-01-22 22:10:56 +00:00
FrancescoUK
c871c68aeb
Fix payment dates not being set correctly
2020-01-19 23:02:26 +00:00
FrancescoUK
6e523a30ab
Database migration minor fixes
2020-01-19 22:45:17 +00:00
FrancescoUK
7739994eda
Minor indentation adjustment
2020-01-19 20:51:41 +00:00
FrancescoUK
5007410c1a
Change Employee input type in Sales edit form
2020-01-19 20:32:57 +00:00
FrancescoUK
b4eabd2265
Fix missing cash refund in sale edit form
2020-01-19 18:24:11 +00:00
FrancescoUK
40d8ea0268
Replace serial number with item_number (barcode) in detailed reports
2020-01-18 15:32:12 +00:00
jekkos
0de4e51c41
Fix item bulk creation
2020-01-17 20:52:21 +01:00
Trần Ngọc Quân
6c6c18418e
Translated using Weblate (Vietnamese)
...
Currently translated at 40.2% (31 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/vi/
2020-01-17 13:49:56 +01:00
Emin Tufan Çetin
2f245b0c73
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (77 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/tr/
2020-01-17 13:49:48 +01:00
Trần Ngọc Quân
1337e88191
Translated using Weblate (Vietnamese)
...
Currently translated at 90.4% (19 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/vi/
2020-01-17 13:49:33 +01:00
Trần Ngọc Quân
6ad6483e3a
Translated using Weblate (Vietnamese)
...
Currently translated at 98.2% (172 of 175 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/vi/
2020-01-17 13:49:20 +01:00
Emin Tufan Çetin
afa13473ed
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (175 of 175 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/tr/
2020-01-17 13:49:12 +01:00
Trần Ngọc Quân
4e26567bee
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/vi/
2020-01-17 13:48:58 +01:00
Emin Tufan Çetin
d0ac084cac
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/tr/
2020-01-17 13:48:51 +01:00
Trần Ngọc Quân
bee6e4d2a9
Translated using Weblate (Vietnamese)
...
Currently translated at 94.8% (37 of 39 strings)
Translation: ospos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/vi/
2020-01-17 13:48:36 +01:00
Emin Tufan Çetin
a6c76ae0e4
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: ospos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/tr/
2020-01-17 13:48:30 +01:00
Trần Ngọc Quân
bf0875be45
Translated using Weblate (Vietnamese)
...
Currently translated at 99.0% (108 of 109 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/vi/
2020-01-17 13:48:15 +01:00
Emin Tufan Çetin
74585ff97d
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (33 of 33 strings)
Translation: ospos/item_kits
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/item_kits/tr/
2020-01-17 13:48:01 +01:00
Trần Ngọc Quân
81ea7ab872
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (19 of 19 strings)
Translation: ospos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/vi/
2020-01-17 13:47:46 +01:00
Trần Ngọc Quân
4b6fd69e3c
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: ospos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/vi/
2020-01-17 13:47:31 +01:00
Trần Ngọc Quân
bc4266e9ab
Translated using Weblate (Vietnamese)
...
Currently translated at 85.7% (6 of 7 strings)
Translation: ospos/enum
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/enum/vi/
2020-01-17 13:47:17 +01:00
Emin Tufan Çetin
d6147b4292
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (7 of 7 strings)
Translation: ospos/enum
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/enum/tr/
2020-01-17 13:47:11 +01:00
Emin Tufan Çetin
84ef3e6c3d
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (279 of 279 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/tr/
2020-01-17 13:46:56 +01:00
jekkos
b4cde57036
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (279 of 279 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/nl_BE/
2020-01-17 13:46:47 +01:00
Emin Tufan Çetin
4c3551909f
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/tr/
2020-01-17 13:46:34 +01:00
Trần Ngọc Quân
2075f3c717
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/vi/
2020-01-17 13:46:18 +01:00
FrancescoUK
d08381850d
Merge pull request #2668 from opensourcepos/fix-attr-default-date
...
Use today as default date in DATETIME attribute (#2666 )
2020-01-12 22:13:59 +00:00
FrancescoUK
af2fd78348
Fix Graphical Summary Payment report
2020-01-12 20:28:55 +00:00
FrancescoUK
60b9069a60
Fix Inventory Summary wrong filters input
2020-01-12 20:28:55 +00:00
FrancescoUK
472e15ab0a
Add detailed supplier report
2020-01-12 20:28:55 +00:00
FrancescoUK
bdddb945f0
Reports minor fixes
2020-01-12 20:28:55 +00:00
jekkos
615038ef38
Change mktime() with time() ( #2666 )
2020-01-11 20:08:45 +01:00
Emin Tufan Çetin
ef661e52e7
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (175 of 175 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/tr/
2020-01-11 18:57:53 +01:00
Robby Triadi Susanto
bd52f0b004
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (175 of 175 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/id/
2020-01-11 18:57:53 +01:00
Mohammed Bensoltana
8ec90d3b40
Translated using Weblate (French)
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/fr/
2020-01-11 18:57:53 +01:00
Mohammed Bensoltana
2aee09d441
Translated using Weblate (French)
...
Currently translated at 98.0% (51 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/fr/
2020-01-11 18:57:53 +01:00
Emin Tufan Çetin
35a6095d30
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/tr/
2020-01-11 18:57:53 +01:00
Mohammed Bensoltana
23a251aa77
Translated using Weblate (French)
...
Currently translated at 87.5% (7 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/fr/
2020-01-11 18:57:53 +01:00
justln1113
48852f0c3f
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (2 of 2 strings)
Translation: ospos/error
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/error/zh_Hant/
2020-01-11 18:57:53 +01:00
Emin Tufan Çetin
42ffe87bf5
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/datepicker
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/datepicker/tr/
2020-01-11 18:57:53 +01:00
Emin Tufan Çetin
2ba61fab9d
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/tr/
2020-01-11 18:57:53 +01:00
Emin Tufan Çetin
1fc634214f
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (279 of 279 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/tr/
2020-01-11 18:57:53 +01:00
luisgarciadiaz
cec35683f4
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (278 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/es_MX/
2020-01-11 18:57:53 +01:00
Robby Triadi Susanto
d4b2b768d3
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (279 of 279 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/id/
2020-01-11 18:57:53 +01:00
Mohammed Bensoltana
a71226e995
Translated using Weblate (French)
...
Currently translated at 93.5% (261 of 279 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/fr/
2020-01-11 18:57:53 +01:00
Emin Tufan Çetin
3cec08c734
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/tr/
2020-01-11 18:57:53 +01:00
justln1113
cccc72d0d8
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 6.8% (2 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/zh_Hant/
2020-01-11 18:57:53 +01:00
Emin Tufan Çetin
bf19f13d4c
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/tr/
2020-01-11 18:57:53 +01:00
luisgarciadiaz
0d7d8ddee2
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/es/
2020-01-11 18:57:53 +01:00
jekkos
de6a547272
Use today as default date in DATETIME attribute ( #2666 )
2020-01-09 20:24:32 +01:00
FrancescoUK
2e1c798c6e
Merge pull request #2662 from andriux1990/master
...
More select onClick
2020-01-04 15:03:54 +00:00
FrancescoUK
26afd63e39
Revert permission change, retain rest of updates.
2020-01-04 15:01:23 +00:00
andriux1990
f8ef88362d
disable edit price to sales employees
2020-01-04 06:32:37 -06:00
FrancescoUK
ae445c8ece
Merge pull request #2660 from opensourcepos/payments-for-invoice-email
...
Add payments to emailed invoice and fix issue with unsupported fonts
2020-01-04 10:41:50 +00:00
FrancescoUK
351bc544ee
Fixed indentation
2020-01-04 10:38:31 +00:00
SteveIreland
5dfe0c237f
Add payments to emailed invoice and fix issue with unsupported fonts
2020-01-03 21:01:07 -05:00
FrancescoUK
3b628bed45
Prepare Release 3.3.2
2020-01-03 22:38:57 +00:00
FrancescoUK
a081b72916
Fix issue with POS transaction return when Items are deleted ( #2659 )
2020-01-03 21:56:43 +00:00
FrancescoUK
44c1e8ce69
Merge pull request #2658 from opensourcepos/fix_full_group_by
...
Fix item + item kits using only_full_group_by
2020-01-03 18:16:51 +00:00
jekkos
d52c16fbba
Fix item form refresh ( #2538 )
2020-01-03 14:26:11 +01:00
jekkos
2351ced921
Add aggregate to fix only_full_group_by ( #2538 )
2020-01-03 09:13:51 +01:00
Awadhoot Jog
afef8ff4a3
use github raw urls
...
curl fetches html content for non-raw urls
2020-01-03 09:10:01 +01:00
jekkos
f9da801f06
Add aggregate to fix only_full_group_by ( #2538 )
2020-01-03 00:16:34 +01:00
FrancescoUK
0c3e7be420
Merge pull request #2633 from opensourcepos/decimal_parsing_fix
...
Expand flexibility of parse_decimal function
2020-01-02 17:03:32 +00:00
jekkos
43420f02f2
Codestyle remarks
2020-01-02 12:40:31 +01:00
FrancescoUK
47b1b7f519
Update composer libraries
2019-12-30 12:01:01 +00:00
FrancescoUK
91d72c0265
Merge pull request #2641 from opensourcepos/csrf-cookie-prefix
...
Add cookie_prefix to csrf cookie name (#2638 )
2019-12-30 11:47:37 +00:00
jekkos
5a98b9c3fd
Fix portugese language ( #2632 )
2019-12-30 12:46:07 +01:00
jekkos
fd3b48ba43
Add cookie_prefix to csrf cookie name ( #2638 )
2019-12-30 11:29:17 +01:00
FrancescoUK
e03ee00e61
Merge pull request #2639 from opensourcepos/refresh-after-import
...
Refresh tables after import + close after invoice email (#478 )
2019-12-29 20:31:23 +00:00
jekkos
685f38e6a0
Bump to CI 3.1.11 (fixes bug with captcha generation)
2019-12-29 19:02:44 +01:00
andriux1990
2641a34a1e
onclick
2019-12-29 17:55:35 +01:00
andriux1990
59bf8d0a45
item selection
2019-12-29 17:55:35 +01:00
jekkos
b8f255cc50
Refresh tables after import + close after invoice email ( #478 )
2019-12-29 17:50:17 +01:00
andriux1990
fae67be8c8
onclick
2019-12-24 07:18:10 -06:00
SteveIreland
230d822fce
Add support to parse_decimal function for tax_decimals and quantity_decimals parsing.
2019-12-22 11:04:01 -05:00
andriux1990
5088362430
item selection
2019-12-15 22:02:09 -06:00
FrancescoUK
970d2d1f42
Bump version to 3.4.0
2019-12-14 18:42:40 +00:00
FrancescoUK
c786d4e0ab
Fix certbot github path ( #2598 )
2019-12-14 17:17:40 +00:00
FrancescoUK
dcb130c1c6
Fix certbot github path ( #2598 )
2019-12-14 17:01:04 +00:00
Ivailo Kamenov
39d70f17b3
Translated using Weblate (Bulgarian)
...
Currently translated at 94.8% (166 of 175 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/bg/
2019-12-01 01:48:30 +01:00
Jintao-Yao
b7443be756
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/zh_Hans/
2019-12-01 01:48:30 +01:00
Jintao-Yao
f75d0af6df
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 61.6% (172 of 279 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/zh_Hans/
2019-12-01 01:48:30 +01:00
Jintao-Yao
420957ecb7
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 96.5% (28 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/zh_Hans/
2019-12-01 01:48:30 +01:00
Jintao-Yao
fde61ae0d6
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/zh_Hans/
2019-12-01 01:48:30 +01:00
FrancescoUK
644694a9f2
Merge pull request #2611 from opensourcepos/3.3.1_patch_csv_import_BOM_check
...
3.3.1 patch csv import bom check
2019-11-26 19:03:11 +00:00
objecttothis
05c022c3f0
Refactoring variables and replacing Excel with CSV
2019-11-26 14:40:41 +04:00
objecttothis
619742de4e
Refactoring files and variable names in Customer/People
2019-11-25 17:27:59 +04:00
objecttothis
6294079ce3
File rename and variable refactor to correct error in import.
2019-11-25 15:51:31 +04:00
objecttothis
35a59fc400
refactor variable names to reflect Excel --> CSV wording
2019-11-18 14:39:21 +04:00
objecttothis
0180de5490
Correctly check for BOM and skip if exists
...
No characters are skipped if BOM doesn't exist
2019-11-18 14:30:18 +04:00
objecttothis
a26ae1a9b3
Refactor to reflect Excel --> CSV wording change
2019-11-18 14:30:18 +04:00
Jens
dd7495a04c
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/nl/
2019-11-16 16:36:15 +01:00
Jens
a59236f4ae
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/datepicker
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/datepicker/nl/
2019-11-16 16:36:00 +01:00
Jens
ab23e01ef8
Translated using Weblate (Dutch)
...
Currently translated at 11.8% (33 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/nl/
2019-11-16 16:35:47 +01:00
Jens
a52d923f79
Translated using Weblate (Dutch)
...
Currently translated at 47.7% (32 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/nl/
2019-11-16 16:35:32 +01:00
Weblate
5c541fcc03
Merge branch 'origin/master' into Weblate
2019-11-14 22:08:14 +01:00
Israel Chavez
afba8b58a3
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (77 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/es_MX/
2019-11-14 22:08:13 +01:00
xarhang
2f755de206
Translated using Weblate (Lao)
...
Currently translated at 45.4% (35 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/lo/
2019-11-14 22:08:06 +01:00
numa-drrey
06506d2793
Translated using Weblate (German)
...
Currently translated at 100.0% (77 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/de/
2019-11-14 22:07:59 +01:00
wd-code
11a66b79b1
Translated using Weblate (French)
...
Currently translated at 100.0% (77 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/fr/
2019-11-14 22:07:52 +01:00
Lord Cold
782bfd23ad
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/es_MX/
2019-11-14 22:07:17 +01:00
EcuadorAmaLaVida
d3625c1b72
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/es/
2019-11-14 22:07:06 +01:00
Daniel Millan
87ec999053
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/es/
2019-11-14 22:07:06 +01:00
Andrea Mangini
5e074d2bef
Translated using Weblate (Italian)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/it/
2019-11-14 22:06:58 +01:00
wd-code
bbc12bb026
Translated using Weblate (French)
...
Currently translated at 90.4% (19 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/fr/
2019-11-14 22:06:48 +01:00
amir alcocer
9b15d1dcd1
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/es_MX/
2019-11-14 22:06:24 +01:00
Lord Cold
fa38bf747a
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/es_MX/
2019-11-14 22:06:21 +01:00
EcuadorAmaLaVida
a03c22cbac
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/es/
2019-11-14 22:06:13 +01:00
Andrea Mangini
e51f77d30e
Translated using Weblate (Italian)
...
Currently translated at 98.8% (171 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/it/
2019-11-14 22:06:06 +01:00
numa-drrey
577394f167
Translated using Weblate (German)
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/de/
2019-11-14 22:05:59 +01:00
wd-code
c67af83de4
Translated using Weblate (French)
...
Currently translated at 93.0% (161 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/fr/
2019-11-14 22:05:52 +01:00
Remco Gerbrands
7e8014dd2e
Translated using Weblate (Dutch)
...
Currently translated at 69.9% (121 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/nl/
2019-11-14 22:05:45 +01:00
numa-drrey
4600f4d9f2
Translated using Weblate (German)
...
Currently translated at 100.0% (128 of 128 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/de/
2019-11-14 22:04:57 +01:00
EcuadorAmaLaVida
bbd2c120f8
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/es/
2019-11-14 22:04:38 +01:00
EcuadorAmaLaVida
1036fcedd7
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (109 of 109 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/es/
2019-11-14 22:04:23 +01:00
numa-drrey
47121d31d1
Translated using Weblate (German)
...
Currently translated at 100.0% (109 of 109 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/de/
2019-11-14 22:04:14 +01:00
Natig Asad
5c9414656b
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (109 of 109 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/az/
2019-11-14 22:04:06 +01:00
WebShells
7a7f0e34ea
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (109 of 109 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/ar_EG/
2019-11-14 22:03:58 +01:00
amir alcocer
ec2f825ceb
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 10.5% (2 of 19 strings)
Translation: ospos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/es_MX/
2019-11-14 22:03:42 +01:00
EcuadorAmaLaVida
5bdd249557
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (19 of 19 strings)
Translation: ospos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/es/
2019-11-14 22:03:34 +01:00
Israel Chavez
8261a50365
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (44 of 44 strings)
Translation: ospos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/es_MX/
2019-11-14 22:03:13 +01:00
numa-drrey
a5e8665870
Translated using Weblate (German)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: ospos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/de/
2019-11-14 22:03:04 +01:00
amir alcocer
01b3db39c4
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (2 of 2 strings)
Translation: ospos/error
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/error/es_MX/
2019-11-14 22:02:48 +01:00
amir alcocer
c989362875
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (7 of 7 strings)
Translation: ospos/enum
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/enum/es_MX/
2019-11-14 22:02:32 +01:00
numa-drrey
430cd13e09
Translated using Weblate (German)
...
Currently translated at 85.7% (6 of 7 strings)
Translation: ospos/enum
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/enum/de/
2019-11-14 22:02:23 +01:00
Israel Chavez
78a3724efe
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (35 of 35 strings)
Translation: ospos/employees
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/employees/es_MX/
2019-11-14 22:02:05 +01:00
Israel Chavez
6d23c1baf5
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/datepicker
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/datepicker/es_MX/
2019-11-14 22:01:49 +01:00
Israel Chavez
1d4d1e207e
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/es_MX/
2019-11-14 22:01:30 +01:00
EcuadorAmaLaVida
3cc5199e80
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/es/
2019-11-14 22:01:23 +01:00
wd-code
f350dac237
Translated using Weblate (French)
...
Currently translated at 92.3% (48 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/fr/
2019-11-14 22:01:15 +01:00
amir alcocer
ee4349fe8a
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (278 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/es_MX/
2019-11-14 22:01:01 +01:00
Lord Cold
96b755d2c6
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (278 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/es_MX/
2019-11-14 22:01:01 +01:00
EcuadorAmaLaVida
6b459ee78f
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (278 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/es/
2019-11-14 22:00:54 +01:00
numa-drrey
82f4694cd2
Translated using Weblate (German)
...
Currently translated at 100.0% (278 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/de/
2019-11-14 22:00:47 +01:00
Jens
156aa721fe
Translated using Weblate (Dutch)
...
Currently translated at 3.5% (10 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/nl/
2019-11-14 22:00:40 +01:00
Haseeb
81f3e02c7b
Translated using Weblate (Urdu (Pakistan))
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/ur_PK/
2019-11-14 22:00:26 +01:00
xarhang
4b42fd270b
Translated using Weblate (Lao)
...
Currently translated at 51.7% (15 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/lo/
2019-11-14 22:00:12 +01:00
numa-drrey
6212595ab7
Translated using Weblate (German)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/de/
2019-11-14 22:00:03 +01:00
Jens
bd353a3f99
Translated using Weblate (Dutch)
...
Currently translated at 79.3% (23 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/nl/
2019-11-14 21:59:50 +01:00
amir alcocer
03a2f5c06e
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/es_MX/
2019-11-14 21:59:37 +01:00
xarhang
e4972852c6
Translated using Weblate (Lao)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/lo/
2019-11-14 21:59:30 +01:00
numa-drrey
ad4cb84a0d
Translated using Weblate (German)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/de/
2019-11-14 21:59:23 +01:00
wd-code
efc66bd1b9
Translated using Weblate (French)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/fr/
2019-11-14 21:59:14 +01:00
Remco Gerbrands
7e7622ceca
Translated using Weblate (Dutch)
...
Currently translated at 46.2% (31 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/nl/
2019-11-14 21:59:07 +01:00
Remco Gerbrands
76607c99fd
Translated using Weblate (Dutch)
...
Currently translated at 3.5% (10 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/nl/
2019-11-14 21:58:52 +01:00
FrancescoUK
75113388f5
Merge pull request #2609 from opensourcepos/3.3.1_patch_icon_logo_button_colors
...
3.3.1 patch icon logo button colors
2019-11-14 19:40:55 +00:00
objecttothis
68f573caba
Correcting Blue background
...
Matching button and text background to new logo color
2019-11-14 18:10:43 +04:00
objecttothis
7a4193c4d5
Corrected Transparency
...
Corrected transparency on favicon.ico and logo.png
removed "OSPOS" lettering from favicon.ico since it was too small to see.
2019-11-14 17:58:15 +04:00
FrancescoUK
a923f279ff
Merge pull request #2606 from bricas/master
...
type="username" is not valid html and breaks firefox autofill; changed to "text"
2019-11-13 07:58:51 +00:00
Brian Cassidy
a84b33d013
css fix
2019-11-12 18:49:35 -04:00
Brian Cassidy
80a512b9be
type="username" is not valid html and breaks firefox autofill; changed to "text"
2019-11-12 15:30:20 -04:00
FrancescoUK
ed10104f98
Merge pull request #2603 from opensourcepos/fix_item_type_maintenance
...
Fix item type maintenance issue regardless.
2019-11-11 19:07:01 +00:00
SteveIreland
fffb70933d
Fix item type maintenance issue regardless.
2019-11-10 19:40:57 -05:00
Weblate
bb4c79d975
Merge translations
2019-11-06 03:55:54 +01:00
FrancescoUK
281d2df621
Prepare release 3.3.1
2019-10-26 17:43:16 +01:00
FrancescoUK
ac1c6b2286
Minor fixes, add CI_ENV to docker-compose
2019-10-26 17:42:30 +01:00
Steve Ireland
a45ac78274
Merge pull request #2583 from opensourcepos/fix_locale_config_3
...
Fix numeric locale configuration.
2019-10-19 17:53:59 -04:00
SteveIreland
4c4725795c
Fix numeric locale configuration.
2019-10-19 17:10:51 -04:00
FrancescoUK
907e42e46b
Merge pull request #2581 from opensourcepos/fix_numeric_locale_config
...
Fix numeric locale configuration.
2019-10-17 06:43:24 +01:00
SteveIreland
d4c2693511
Fix numeric locale configuration.
2019-10-16 21:37:46 -04:00
FrancescoUK
eef7d65b5c
Update Bootswatch themes to latest version
2019-10-13 21:29:40 +01:00
FrancescoUK
bdb3dbe0eb
Merge pull request #2579 from opensourcepos/receipt_tax_indicator
...
Add a code to indicate a taxable item on a sales receipt
2019-10-11 06:31:36 +01:00
SteveIreland
61e28302ce
Add a code to indicate a taxable item on a sales receipt
2019-10-11 00:10:13 -04:00
FrancescoUK
a56a4070a6
Revert "Fix "only_full_group_by" issue ( #2538 )"
...
This reverts commit 424eb4cf14 .
2019-10-06 20:15:24 +01:00
FrancescoUK
69d57b3744
Merge pull request #2567 from opensourcepos/fix-initial-tax-config
...
Clear initial default for Cascade and Seq for Tax Config Tables
2019-10-06 18:54:31 +01:00
FrancescoUK
424eb4cf14
Fix "only_full_group_by" issue ( #2538 )
2019-10-06 18:43:58 +01:00
WShells
3a06f55db9
Update INSTALL.md
2019-10-06 00:31:24 +03:00
WShells
5fc20600e7
Removed breaks
...
Removed Line Breaks
2019-10-06 00:28:53 +03:00
SteveIreland
4a6f4e1f74
Clear initial default for Cascade and Seq for Tax Jurisdiction and Tax Category.
2019-10-03 22:28:30 -04:00
tuthanika
216396c94c
Update attributes_lang.php ( #2561 )
...
VI Translations Added
2019-10-02 04:00:49 +03:00
FrancescoUK
19eb1cab59
Bump version to 3.3.1 to contain bug fixing
2019-10-01 20:09:55 +01:00
tuthanika
51ca6e92c7
Fix Colspan in receipt_short.php ( #2557 )
...
On Discounts: Columns deviation after adding a discounted amount to sales.
2019-10-01 13:22:02 +03:00
WShells
fd9d143269
Fix Graphical Summary 500 Internal Server Error
...
500 Internal Server Error Fix On Summary Graphical Reports Fix
2019-10-01 05:09:30 +03:00
WShells
0b9a767d9a
Sectioning Fix
...
Sectioning Fix
2019-09-29 20:06:09 +03:00
WShells
a90f34d938
Added cPanel Auto Installer
...
For VPS, Dedicated Servers, or Shared Hosting Installation running on cPanel with **SSH** access:
Stand-alone [WS-OSPOS-Installer](https://github.com/WebShells/WS-OSPOS-Installer.git ), it will handle:
. Database.php config files generation
. Creation of db User & Password depending on user's input of Dbname, Username, Password, & Hostname ( No need for phpmyadmin )
. Imports default Db SQL files in order to run the project.
2019-09-29 18:24:03 +03:00
WShells
53a1adca04
Added cPanel Auto Installer
...
For VPS, Dedicated Servers, or Shared Hosting Installation running on cPanel with **SSH** access:
Stand-alone [OSPOS-Auto-Installer](https://github.com/WebShells/WS-OSPOS-Installer.git ), it will handle:
. Database.php config files generation
. Creation of db User & Password depending on user's input of Dbname, Username, Password, & Hostname ( No need for phpmyadmin )
. Imports default Db SQL files in order to run the project.
2019-09-29 18:19:03 +03:00
FrancescoUK
17b8cfd70c
Add new docker installation guideline, update LICENSE
2019-09-29 13:35:35 +01:00
jekkos
8a8f708ff9
Travis: Try to find correct container name
2019-09-29 12:54:45 +02:00
jekkos
14dab2515f
Travis: Tag container with correct name
2019-09-29 12:35:36 +02:00
jekkos
2d8bdae77a
Remove docker tag after build
2019-09-29 11:09:02 +02:00
jekkos
79ca1ce58c
Minor update Install + Readme
2019-09-29 01:35:37 +02:00
WShells
40036e6050
Added Fixed Sales Discount
2019-09-29 02:25:04 +03:00
WShells
6c1ccc6bac
System Info
...
System Info For Issue Reporting
2019-09-28 23:33:10 +03:00
WShells
e8960c7398
System Info
...
Added system info for issue reporting for version 3.3.0 or higher.
2019-09-28 23:30:43 +03:00
FrancescoUK
27dd669579
Fix PHP version in INSTALL.md
2019-09-28 21:22:37 +01:00
FrancescoUK
8b8472b836
New logo and updated files to prepare for Release 3.3.0
2019-09-28 20:47:37 +01:00
FrancescoUK
b4ed7c925f
Upgrade CodeIgniter to 3.1.11, LICENSE files and npm
2019-09-28 19:08:36 +01:00
FrancescoUK
8d699cc9ad
Upgrade CodeIgniter to 3.1.11, LICENSE file and npm
2019-09-28 19:06:52 +01:00
FrancescoUK
d63eb47e63
Merge pull request #2550 from opensourcepos/3_3_0_validate_after_bulk
...
Trigger validation when creating items in bulk (#2521 )
2019-09-25 21:08:17 +01:00
jekkos
0ca766e9c9
Trigger validation when creating items in bulk ( #2521 )
2019-09-25 00:17:55 +02:00
FrancescoUK
ad14936cf3
Merge pull request #2546 from opensourcepos/3.3.0_fix_barcode_import
...
Fix barcode import (#2515 )
2019-09-23 08:43:56 +01:00
jekkos
55c86afcde
Fix warning in development mode ( #2476 )
2019-09-23 07:55:44 +02:00
jekkos
e0cd10c8ec
Fix barcode import ( #2515 )
2019-09-22 19:43:58 +02:00
FrancescoUK
4274321a3f
Fix empty report issue ( #2522 )
2019-09-11 21:46:06 +01:00
Weblate
9bdebc6bdd
Fix escape sequence in spanish
2019-09-11 09:36:36 +02:00
FrancescoUK
b4d860282b
Merge pull request #2534 from WebShells/LB
...
EG to LB
2019-09-10 21:28:01 +01:00
WebShells
4f089aa68d
Re-added EG
...
Re-added EG, need to be double checked to make sure it fits Egyptian Language. ( most probably 70% no differences in language ).
2019-09-10 20:08:03 +03:00
WebShells
59884e7f81
EG to LB
...
Although it fits for all arabic language countries, yet it's the most accurate locale to be used.
Most of AR Translation were made for LB language.
2019-09-10 16:51:46 +03:00
dimon daemon
d29d2e8bc4
Translated using Weblate (Russian)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/ru/
2019-09-10 12:57:29 +02:00
FrancescoUK
64eb7abf2f
Fix empty reports issue ( #2522 )
2019-09-09 22:11:38 +01:00
WShells
05dd216ad9
Update LICENSE
2019-09-09 01:06:25 +03:00
FrancescoUK
2c4c29e31d
Merge pull request #2531 from opensourcepos/fix-cart-reseq
...
Remove the redundancy of cart resequencing for POS receipts.
2019-09-08 20:17:07 +01:00
SteveIreland
6ad3db7ef9
Remove the redundancy of cart resequencing for POS receipts.
2019-09-07 20:57:28 -04:00
FrancescoUK
4c80a97202
Merge pull request #2528 from mckaygerhard/feat-sumrep-inventorycatcolum1
...
added category column to the inventory summary report due huge produc… (#2526 )
2019-09-07 19:00:47 +01:00
PICCORO Lenz McKAY
37189ba1f3
added category column to the inventory summary report due huge product data
...
closes https://github.com/opensourcepos/opensourcepos/issues/2526
2019-09-02 22:34:30 -04:30
jekkos
7ebae8ad8a
Fix warning when opening attribute edit form
2019-08-11 17:22:47 +02:00
jekkos
8bca8fab53
Fix warning in dev mode ( #2485 )
2019-08-07 00:19:12 +02:00
jekkos
0d3a33f1ba
Fix attribute visibility view if none selected ( #2485 )
2019-08-07 00:14:22 +02:00
jekkos
0a2894c582
Left join on attribute_values to show items with no value ( #2485 )
2019-08-04 22:29:44 +02:00
FrancescoUK
ac6d5eef46
Merge pull request #2496 from opensourcepos/dinner_table_fix
...
Improves the behavior of dinner table selection.
2019-07-22 18:17:23 +01:00
SteveIreland
f95d777dc2
Improves the behavior of dinner table selection.
2019-07-21 11:53:01 -04:00
FrancescoUK
fa71bc6ed6
Merge pull request #2490 from opensourcepos/3.3.0_patch_empty_reports
...
fix empty reports
2019-07-14 13:40:50 +01:00
objecttothis
f235cede08
Update date_input.php
...
Corrected this from 1 to 2. 'All' is counted in the array which means that if there is only one stock location, this dropdown will still appear. Setting this to 2 means that the dropdown only shows when there is more than 1 stock location.
2019-07-12 15:16:21 +04:00
objecttothis
991830817e
Create 20190712150200_fix_empty_reports.php
...
This corrects an error in a previous migration (2.3_to_2.3.1.sql) that assigned a null value to receivings_stock and sales_stock for the location_id when it should have been the location_id of that particular stock_location.
2019-07-12 15:05:14 +04:00
Weblate
929dc7fbb8
Merge branch 'origin/master' into Weblate
2019-07-10 12:20:26 +02:00
Francisco xyko
764b3d2a84
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/pt_BR/
2019-07-10 12:20:25 +02:00
Francisco xyko
a89cc74ba5
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (109 of 109 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/pt_BR/
2019-07-10 12:20:12 +02:00
FrancescoUK
7daa69db43
Merge pull request #2488 from opensourcepos/3.3.0_patch_datetime_to_date
...
3.3.0 patch datetime to date
2019-07-10 07:54:22 +01:00
objecttothis
8c173540e6
Update Attribute.php
...
changed DATETIME to DATE since constant name was changed but it wasn't changed here.
2019-07-09 18:05:23 +04:00
objecttothis
9297e73b69
Update locale_helper.php
...
Adding back in deleted method.
2019-07-09 18:03:28 +04:00
FrancescoUK
79e1ccc9a0
Add new languages to config selection list
2019-07-07 11:19:26 +01:00
Weblate
e275486efe
Add th config
2019-07-06 14:10:09 +02:00
jekkos
7da7c0e16f
Send back to bintray ( #2464 )
2019-07-04 19:30:50 +02:00
jekkos
abcf12c3d7
Change newlines into html breaks (invoice template)
2019-07-03 19:44:55 +02:00
jekkos
a45b8e2689
Keep history for downloads branch
2019-07-01 09:19:55 +02:00
Weblate
4269884008
Merge branch 'master' of https://github.com/opensourcepos/opensourcepos
2019-06-30 23:16:03 +02:00
jekkos
efd92fb94f
Push to downloads branch instead
2019-06-30 23:00:41 +02:00
jekkos
4cecfb5079
Merge branch 'master' of https://github.com/opensourcepos/opensourcepos
2019-06-30 22:44:49 +02:00
jekkos
84a4f53aa0
Add repo name ( #2464 )
2019-06-30 22:43:17 +02:00
jekkos
8daab70725
Fix text attribute parsing ( #2476 )
2019-06-30 22:03:02 +02:00
jekkos
89654f8b00
Use underscors in .travis.yml ( #2464 )
2019-06-30 19:03:31 +02:00
jekkos
d8173e79e5
Fix dpl argument format
2019-06-30 18:44:21 +02:00
Weblate
7591b7418f
Merge branch 'origin/master' into Weblate
2019-06-30 18:43:31 +02:00
Ho
f62c668c09
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 6.4% (5 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/zh_Hant/
2019-06-30 18:43:26 +02:00
Ho
27b81de285
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/zh_Hant/
2019-06-30 18:43:13 +02:00
Ho
cd79cd16ac
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/zh_Hant/
2019-06-30 18:43:01 +02:00
Ho
d22dc1fa93
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/zh_Hant/
2019-06-30 18:42:47 +02:00
Ho
d865d64e4d
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (12 of 12 strings)
Translation: ospos/messages
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/messages/zh_Hant/
2019-06-30 18:42:35 +02:00
Ho
28885ed1e0
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/zh_Hant/
2019-06-30 18:42:07 +02:00
khao_lek
6c1853bdb5
Translated using Weblate (Thai)
...
Currently translated at 61.8% (172 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/th/
2019-06-30 18:41:52 +02:00
Ho
7d21e08e7d
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/bootstrap_tables
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/bootstrap_tables/zh_Hans/
2019-06-30 18:41:39 +02:00
Ho
09805d1fd0
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/zh_Hant/
2019-06-30 18:41:26 +02:00
jekkos
6817620808
Use sudo to move artifact
2019-06-30 17:52:42 +02:00
jekkos
cfe5a3c84e
Enable attribute search for datetime ( #2441 )
2019-06-30 17:52:32 +02:00
jekkos
6167a164ad
Keep artifact in the same folder
2019-06-30 17:38:25 +02:00
jekkos
6d6a983b9d
Add before_deploy hook
2019-06-30 17:31:54 +02:00
jekkos
d0bf865e6b
Use gh-pages brnach for deployment
2019-06-30 17:25:46 +02:00
Alex Garcia
7bb05a09d9
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 96.1% (74 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/es_MX/
2019-06-27 21:14:07 +02:00
Trần Ngọc Quân
9d17cd1322
Translated using Weblate (Vietnamese)
...
Currently translated at 93.5% (102 of 109 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/vi/
2019-06-27 21:14:07 +02:00
Alex Garcia
c47b3aceaa
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (278 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/es_MX/
2019-06-27 21:14:07 +02:00
Trần Ngọc Quân
29e5a5959d
Translated using Weblate (Vietnamese)
...
Currently translated at 44.8% (13 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/vi/
2019-06-27 21:14:07 +02:00
objecttothis
fe2b609446
Update LICENSE
...
Added copyright claim regarding my pull requests.
2019-06-26 12:14:41 +04:00
FrancescoUK
cfd1bd13e1
Merge pull request #2468 from opensourcepos/add-decimal-attrs-to-items
...
Add decimals to items search result + fix reports
2019-06-23 14:29:18 +01:00
FrancescoUK
1f2aa2708d
Fix missing ) and minor change
2019-06-22 16:39:18 +01:00
jekkos
8ca5449b79
Add decimals to items search result + fix reports
2019-06-20 18:39:17 +02:00
FrancescoUK
54925b27a8
Merge pull request #2467 from opensourcepos/fix-payment-update
...
Fix a couple of issues with payment processing.
2019-06-20 04:27:23 +01:00
Steve Ireland
a34f017dbd
Fix a couple of issues with payment processing.
2019-06-19 21:50:20 -04:00
Robby Triadi Susanto
5355b671fe
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (109 of 109 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/id/
2019-06-18 23:14:48 +02:00
Robby Triadi Susanto
eea25b1e17
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/id/
2019-06-18 23:14:48 +02:00
FrancescoUK
196573f49b
Merge pull request #2410 from opensourcepos/letsencryptdocker
...
docker-compose with nginx reverse proxy and letsencrypt certbot
2019-06-16 14:46:59 +01:00
FrancescoUK
37e369ce46
Fix .env issue and add logs as volume
2019-06-16 14:14:37 +01:00
FrancescoUK
30d29f797e
Upgrade PHP to 7.3
2019-06-16 14:14:37 +01:00
FrancescoUK
a3b117fcb3
Update docker-compose.dev and docker-compose.test
2019-06-16 14:14:37 +01:00
FrancescoUK
a7950e02fc
docker-compose for nginx reverse proxy and letsencrypt certbot
2019-06-16 14:14:37 +01:00
FrancescoUK
0491c1888e
Fix wrong Sale and Receivings receipt times
2019-06-16 14:12:12 +01:00
FrancescoUK
e173186109
Temporary fix sale form cash_refund crash, other minor code changes
2019-06-16 10:27:27 +01:00
FrancescoUK
3f9b8c59e1
Remove spurious system_info.php file (security)
2019-06-15 21:39:30 +01:00
FrancescoUK
4f78b1efab
Fix datetime issues ( #2319 ) and refactor code
2019-06-15 21:37:27 +01:00
FrancescoUK
6ef038d0ca
Update composer libraries and License file
2019-06-15 11:53:00 +01:00
FrancescoUK
4aec3d04d6
Bump script date to follow the correct database migration order
2019-06-15 10:48:50 +01:00
FrancescoUK
01dfd023eb
Merge pull request #2319 from opensourcepos/fix-attribute-datetime
...
Fix attribute datetime formatting
2019-06-15 10:32:22 +01:00
FrancescoUK
e60d2ab900
Merge pull request #2461 from opensourcepos/database-fixes-si
...
Database Fix
2019-06-15 10:10:01 +01:00
FrancescoUK
b4790334a6
Add ospos_expenses date index
2019-06-15 09:42:54 +01:00
FrancescoUK
4644dd2e46
MySQL queries consistency check
2019-06-15 09:39:08 +01:00
Steve Ireland
442af20815
Add missing database constraints.
2019-06-14 21:28:16 -04:00
FrancescoUK
cb3fd1f0eb
Merge pull request #2462 from opensourcepos/patch-install-statistics-page
...
Update system_info.php
2019-06-13 21:23:54 +01:00
objecttothis
32a88098b0
Update system_info.php
...
Remove check for write permissions on import_items.csv file since the file no longer exists and is generated on-the-fly.
2019-06-13 23:52:03 +04:00
FrancescoUK
28b3bc87d4
Comment out unused code still with custom fields
2019-06-09 21:47:36 +01:00
Steve Ireland
7b07ac9e21
Merge pull request #2448 from opensourcepos/track-initial-cash-refund
...
Track initial cash refunds
2019-06-09 12:13:29 -04:00
FrancescoUK
a61ddc19d2
Optimise DB query, tidy up
2019-06-09 10:53:48 +01:00
Steve Ireland
595ef0b617
Track initial cash refunds
2019-06-07 21:48:05 -04:00
jekkos
0ae6470b35
Migrate attribute datetime to date ( #2441 )
2019-06-05 00:47:17 +02:00
jekkos
d3d051ee72
Fix loading attribute values in item search ( #2232 )
2019-06-05 00:31:45 +02:00
jekkos
f2d2b1d3e2
Fix datetime attribute formatting ( #2232 )
2019-06-05 00:29:48 +02:00
FrancescoUK
d47099fa23
Merge pull request #2431 from opensourcepos/attributes_csv_import_integration
...
Attributes csv import integration
2019-06-04 21:13:54 +01:00
objecttothis
1f18ccd6d6
Delete import_items.csv
...
Apparently this deletion was undone when we squashed commits. This file is no longer needed due to generating the CSV on the fly.
2019-06-04 12:04:29 +04:00
objecttothis
e900607725
Delete 20190415111200_stock_location.php
...
Apparently this deletion was undone when we squashed commits. This file is no longer needed due to generating the CSV on the fly.
2019-06-04 12:03:46 +04:00
FrancescoUK
3894af4db2
Optimise database temp tables indexes ( #2409 )
2019-06-03 22:45:00 +01:00
FrancescoUK
dbf3114267
Attributes csv import integration
2019-06-03 21:13:21 +01:00
FrancescoUK
bab07fc857
Merge pull request #2426 from opensourcepos/fix-pdfcreate
...
Fix Send Invoice PDF
2019-06-02 21:23:22 +01:00
jekkos
2f3e915a3e
Bump php base container
2019-05-25 15:15:32 +02:00
Robby Triadi Susanto
6e3271b6eb
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/id/
2019-05-23 22:33:22 +02:00
Robby Triadi Susanto
cdf3db2f5a
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/id/
2019-05-23 22:33:09 +02:00
Weblate
4c507540c8
Merge branch 'origin/master' into Weblate
2019-05-21 14:16:01 +02:00
objecttothis
72a6ee1d55
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (77 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/tl/
2019-05-21 14:16:01 +02:00
Amine Amine
4b305a708f
Translated using Weblate (French)
...
Currently translated at 33.7% (26 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/fr/
2019-05-21 14:15:54 +02:00
objecttothis
05c34912df
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/tl/
2019-05-21 14:15:41 +02:00
Johntini
ab8e8373c0
Translated using Weblate (Spanish)
...
Currently translated at 97.6% (169 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/es/
2019-05-21 14:15:27 +02:00
Johntini
5a46dfc0c0
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (128 of 128 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/es/
2019-05-21 14:15:12 +02:00
objecttothis
b32344dbc5
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: ospos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/tl/
2019-05-21 14:14:55 +02:00
objecttothis
342a561d98
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (12 of 12 strings)
Translation: ospos/messages
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/messages/tl/
2019-05-21 14:14:38 +02:00
objecttothis
3d8d3dca09
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (108 of 108 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/tl/
2019-05-21 14:14:20 +02:00
objecttothis
97276b9227
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (33 of 33 strings)
Translation: ospos/item_kits
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/item_kits/tl/
2019-05-21 14:14:04 +02:00
objecttothis
a8153a0beb
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (68 of 68 strings)
Translation: ospos/giftcards
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/giftcards/tl/
2019-05-21 14:13:47 +02:00
objecttothis
6b090e1bc3
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (19 of 19 strings)
Translation: ospos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/tl/
2019-05-21 14:13:32 +02:00
objecttothis
c5ccf4aa68
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: ospos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/tl/
2019-05-21 14:13:17 +02:00
objecttothis
94a9f0282d
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (35 of 35 strings)
Translation: ospos/employees
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/employees/tl/
2019-05-21 14:13:02 +02:00
objecttothis
987399b337
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/datepicker
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/datepicker/tl/
2019-05-21 14:12:47 +02:00
objecttothis
eaf0af7fd2
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/tl/
2019-05-21 14:12:32 +02:00
objecttothis
2ee699441c
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (278 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/tl/
2019-05-21 14:12:15 +02:00
objecttothis
62da526d1a
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/tl/
2019-05-21 14:11:59 +02:00
objecttothis
edaead7584
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/tl/
2019-05-21 14:11:44 +02:00
objecttothis
ea02ae5d01
Translated using Weblate (Tagalog)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/tl/
2019-05-21 14:11:28 +02:00
objecttothis
92c975d84a
Merge pull request #2450 from opensourcepos/rename-tagalog-folder
...
Rename tagalog folder
2019-05-21 16:08:53 +04:00
objecttothis
5d68926e7f
Rename application/language/tl/taxes_lang.php to application/language/tl-PH/taxes_lang.php
2019-05-21 15:55:43 +04:00
objecttothis
d9195a90a6
Rename application/language/tl/suppliers_lang.php to application/language/tl-PH/suppliers_lang.php
2019-05-21 15:55:33 +04:00
objecttothis
ec51249eab
Rename application/language/tl/sales_lang.php to application/language/tl-PH/sales_lang.php
2019-05-21 15:55:26 +04:00
objecttothis
3e6d0e4977
Rename application/language/tl/reports_lang.php to application/language/tl-PH/reports_lang.php
2019-05-21 15:55:18 +04:00
objecttothis
c9bbfa0862
Rename application/language/tl/receivings_lang.php to application/language/tl-PH/receivings_lang.php
2019-05-21 15:55:11 +04:00
objecttothis
3fd0bccc7b
Rename application/language/tl/module_lang.php to application/language/tl-PH/module_lang.php
2019-05-21 15:55:00 +04:00
objecttothis
00d3f59471
Rename application/language/tl/messages_lang.php to application/language/tl-PH/messages_lang.php
2019-05-21 15:54:19 +04:00
objecttothis
996b4030a6
Rename application/language/tl/login_lang.php to application/language/tl-PH/login_lang.php
2019-05-21 15:54:11 +04:00
objecttothis
826966441a
Rename application/language/tl/items_lang.php to application/language/tl-PH/items_lang.php
2019-05-21 15:54:02 +04:00
objecttothis
e21249dd32
Rename application/language/tl/item_kits_lang.php to application/language/tl-PH/item_kits_lang.php
2019-05-21 15:53:52 +04:00
objecttothis
2089463f86
Rename application/language/tl/giftcards_lang.php to application/language/tl-PH/giftcards_lang.php
2019-05-21 15:53:42 +04:00
objecttothis
4c7829876c
Rename application/language/tl/expenses_lang.php to application/language/tl-PH/expenses_lang.php
2019-05-21 15:53:33 +04:00
objecttothis
980b6013f2
Rename application/language/tl/expenses_categories_lang.php to application/language/tl-PH/expenses_categories_lang.php
2019-05-21 15:53:20 +04:00
objecttothis
a57edc829f
Rename application/language/tl/error_lang.php to application/language/tl-PH/error_lang.php
2019-05-21 15:53:13 +04:00
objecttothis
074c68d940
Rename application/language/tl/enum_lang.php to application/language/tl-PH/enum_lang.php
2019-05-21 15:53:05 +04:00
objecttothis
bd9cb1a141
Rename application/language/tl/employees_lang.php to application/language/tl-PH/employees_lang.php
2019-05-21 15:52:54 +04:00
objecttothis
70fc42aa39
Rename application/language/tl/datepicker_lang.php to application/language/tl-PH/datepicker_lang.php
2019-05-21 15:52:44 +04:00
objecttothis
9ec2db667b
Rename application/language/tl/customers_lang.php to application/language/tl-PH/customers_lang.php
2019-05-21 15:52:30 +04:00
objecttothis
0a21a0a87d
Rename application/language/tl/config_lang.php to application/language/tl-PH/config_lang.php
2019-05-21 15:52:10 +04:00
objecttothis
2238e8fcff
Rename application/language/tl/cashups_lang.php to application/language/tl-PH/cashups_lang.php
2019-05-21 15:52:00 +04:00
objecttothis
978b395b70
Rename application/language/common_lang.php to application/language/tl-PH/common_lang.php
2019-05-21 15:51:51 +04:00
objecttothis
4520f0bb09
Rename application/language/tl/common_lang.php to application/language/common_lang.php
2019-05-21 15:51:35 +04:00
objecttothis
48d3c1873c
Rename application/language/tl/bootstrap_tables_lang.php to application/language/tl-PH/bootstrap_tables_lang.php
2019-05-21 15:47:43 +04:00
objecttothis
97a567ef50
Rename application/language/tl/attributes_lang.php to application/language/tl-PH/attributes_lang.php
2019-05-21 15:46:20 +04:00
objecttothis
8305623791
Added translation using Weblate (Tagalog)
2019-05-20 19:58:49 +02:00
objecttothis
37073ec146
Added translation using Weblate (Tagalog)
2019-05-20 19:55:47 +02:00
objecttothis
439875064e
Added translation using Weblate (Tagalog)
2019-05-20 14:46:56 +02:00
objecttothis
ce2983e457
Added translation using Weblate (Tagalog)
2019-05-20 14:46:29 +02:00
objecttothis
180c31ab36
Added translation using Weblate (Tagalog)
2019-05-20 14:45:57 +02:00
objecttothis
509698b17a
Added translation using Weblate (Tagalog)
2019-05-20 14:44:20 +02:00
objecttothis
e6509daf8f
Added translation using Weblate (Tagalog)
2019-05-20 14:38:08 +02:00
objecttothis
901c1ef36b
Deleted translation using Weblate (Filipino)
2019-05-20 14:37:32 +02:00
objecttothis
30408fc142
Added translation using Weblate (Tagalog)
2019-05-20 14:36:47 +02:00
objecttothis
3ebfe29d9a
Deleted translation using Weblate (Filipino)
2019-05-20 14:36:09 +02:00
objecttothis
ed4856b483
Added translation using Weblate (Tagalog)
2019-05-20 14:35:31 +02:00
objecttothis
f3eaf428c2
Deleted translation using Weblate (Filipino)
2019-05-20 14:34:42 +02:00
objecttothis
e676f5f4d2
Added translation using Weblate (Tagalog)
2019-05-20 14:33:43 +02:00
objecttothis
444189c670
Deleted translation using Weblate (Filipino)
2019-05-20 14:31:45 +02:00
objecttothis
c902d4e51e
Added translation using Weblate (Tagalog)
2019-05-20 14:24:53 +02:00
objecttothis
5876e1ae32
Deleted translation using Weblate (Filipino)
2019-05-20 14:22:39 +02:00
objecttothis
9d31b75c15
Added translation using Weblate (Tagalog)
2019-05-20 14:15:20 +02:00
objecttothis
9ab1dac38c
Deleted translation using Weblate (Filipino)
2019-05-20 14:14:43 +02:00
objecttothis
0a2f6c19c2
Added translation using Weblate (Tagalog)
2019-05-20 14:03:09 +02:00
objecttothis
3e908c89ff
Deleted translation using Weblate (Filipino)
2019-05-20 13:58:22 +02:00
objecttothis
41e7cb3c81
Added translation using Weblate (Tagalog)
2019-05-20 13:56:30 +02:00
objecttothis
c76fa73010
Deleted translation using Weblate (Filipino)
2019-05-20 13:55:55 +02:00
objecttothis
1f1abb1bd6
Added translation using Weblate (Tagalog)
2019-05-20 13:55:22 +02:00
objecttothis
50b681215c
Deleted translation using Weblate (Filipino)
2019-05-20 13:54:37 +02:00
objecttothis
7dd99d5e17
Added translation using Weblate (Tagalog)
2019-05-20 13:46:05 +02:00
objecttothis
7edbd8b3b9
Deleted translation using Weblate (Filipino)
2019-05-20 13:45:19 +02:00
objecttothis
e7298aa521
Added translation using Weblate (Tagalog)
2019-05-20 13:43:24 +02:00
objecttothis
7350e2f62e
Deleted translation using Weblate (Filipino)
2019-05-20 13:42:44 +02:00
objecttothis
255fec2ba7
Added translation using Weblate (Tagalog)
2019-05-20 13:40:03 +02:00
objecttothis
c20169ae18
Deleted translation using Weblate (Filipino)
2019-05-20 13:39:18 +02:00
objecttothis
f90c99a276
Added translation using Weblate (Tagalog)
2019-05-20 13:08:19 +02:00
objecttothis
939a9157c2
Deleted translation using Weblate (Filipino)
2019-05-20 13:07:19 +02:00
objecttothis
7936998c53
Added translation using Weblate (Tagalog)
2019-05-20 13:06:34 +02:00
objecttothis
f55ab2fd80
Deleted translation using Weblate (Filipino)
2019-05-20 13:05:50 +02:00
objecttothis
383dc0057c
Added translation using Weblate (Tagalog)
2019-05-20 13:04:04 +02:00
objecttothis
5dbf473ddd
Deleted translation using Weblate (Filipino)
2019-05-20 13:03:26 +02:00
objecttothis
47534b5ead
Added translation using Weblate (Tagalog)
2019-05-20 13:02:53 +02:00
objecttothis
2154b6d5c3
Deleted translation using Weblate (Filipino)
2019-05-20 13:02:15 +02:00
objecttothis
9ca685698c
Deleted translation using Weblate (Filipino)
2019-05-20 13:01:45 +02:00
objecttothis
1d2198563f
Added translation using Weblate (Filipino)
2019-05-20 12:58:31 +02:00
objecttothis
a648e7415d
Added translation using Weblate (Filipino)
2019-05-20 12:56:36 +02:00
objecttothis
9b533396b8
Added translation using Weblate (Filipino)
2019-05-20 12:52:38 +02:00
objecttothis
0dc4c60aaf
Added translation using Weblate (Filipino)
2019-05-20 12:50:31 +02:00
objecttothis
7a6b600f2c
Added translation using Weblate (Filipino)
2019-05-20 12:48:25 +02:00
objecttothis
993343a2a2
Added translation using Weblate (Filipino)
2019-05-20 12:39:00 +02:00
objecttothis
b173de6c6d
Added translation using Weblate (Filipino)
2019-05-20 12:34:10 +02:00
objecttothis
8d1f52ac5a
Added translation using Weblate (Filipino)
2019-05-20 12:33:05 +02:00
objecttothis
a579e57ea4
Added translation using Weblate (Filipino)
2019-05-20 12:26:36 +02:00
objecttothis
0a07cec9c4
Added translation using Weblate (Filipino)
2019-05-20 12:24:26 +02:00
objecttothis
303d39f367
Added translation using Weblate (Filipino)
2019-05-20 12:22:29 +02:00
objecttothis
5fb3c59489
Added translation using Weblate (Filipino)
2019-05-20 12:17:45 +02:00
objecttothis
7c34eeb982
Added translation using Weblate (Filipino)
2019-05-20 12:15:08 +02:00
objecttothis
603ff87b50
Added translation using Weblate (Filipino)
2019-05-20 12:04:22 +02:00
objecttothis
b531fc1cbc
Added translation using Weblate (Filipino)
2019-05-20 11:56:48 +02:00
objecttothis
2d13cb7dc8
Added translation using Weblate (Filipino)
2019-05-20 11:54:25 +02:00
objecttothis
f94af21484
Added translation using Weblate (Filipino)
2019-05-20 11:49:30 +02:00
jekkos
cac35f147f
Added translation using Weblate (Tagalog)
2019-05-20 10:00:36 +02:00
Weblate
a7a7f4753c
Merge branch 'origin/master' into Weblate
2019-05-14 22:08:33 +02:00
Gonzalo Fleming
bed6fc9a70
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (77 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/es/
2019-05-14 22:08:30 +02:00
Robby Triadi Susanto
ac673555c9
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (77 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/id/
2019-05-14 22:08:24 +02:00
Robby Triadi Susanto
0096eb9e38
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/id/
2019-05-14 22:08:14 +02:00
Gonzalo Fleming
367c63a9aa
Translated using Weblate (Spanish)
...
Currently translated at 94.7% (164 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/es/
2019-05-14 22:07:58 +02:00
Robby Triadi Susanto
2bda9d5f42
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (128 of 128 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/id/
2019-05-14 22:07:33 +02:00
Robby Triadi Susanto
dcd89faa28
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/id/
2019-05-14 22:07:21 +02:00
Robby Triadi Susanto
b0c3ff84c9
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: ospos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/id/
2019-05-14 22:07:10 +02:00
Robby Triadi Susanto
da9d584dd3
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (108 of 108 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/id/
2019-05-14 22:06:59 +02:00
Robby Triadi Susanto
f3dff053d3
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (19 of 19 strings)
Translation: ospos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/id/
2019-05-14 22:06:49 +02:00
Robby Triadi Susanto
9903912bd7
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: ospos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/id/
2019-05-14 22:06:38 +02:00
Robby Triadi Susanto
a26fc359ac
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/id/
2019-05-14 22:06:28 +02:00
Robby Triadi Susanto
857e0bb7a0
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (278 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/id/
2019-05-14 22:06:18 +02:00
Robby Triadi Susanto
eed58af6ee
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/id/
2019-05-14 22:06:07 +02:00
Robby Triadi Susanto
d37783ef0f
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/id/
2019-05-14 22:05:56 +02:00
Gonzalo Fleming
79a563cf66
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/es/
2019-05-14 22:05:46 +02:00
WShells
56f43fb67f
DB Version Fix
...
DB Version now reflecting server's version
2019-05-09 03:03:05 +03:00
FrancescoUK
9786d63804
Merge pull request #2440 from josh-tf/master
...
fix typo in url in bintray config
2019-05-05 14:40:07 +01:00
Josh Bowden
c69a1d9f40
fix typo in url in bintray config
2019-05-05 19:28:16 +10:00
Steve Ireland
b6c6cc88bc
Merge pull request #2439 from opensourcepos/fix-quote-print
...
Fix quote print
2019-05-02 22:29:25 -04:00
Steve Ireland
dc8b69ab50
Fix quote print
2019-05-02 22:10:35 -04:00
Steve Ireland
cb0660e4a6
Merge pull request #2434 from opensourcepos/payment_update
...
Support updates to payments
2019-05-01 21:34:46 -04:00
Steve Ireland
a89674ccfe
Support updates to payments
2019-05-01 21:17:22 -04:00
Nick Avramidis
3b49f7829e
Translated using Weblate (Greek)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/el/
2019-04-28 13:54:27 +02:00
Nick Avramidis
bd7d615ef6
Translated using Weblate (Greek)
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/el/
2019-04-28 13:54:13 +02:00
Nick Avramidis
18c342e2be
Translated using Weblate (Greek)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/el/
2019-04-28 13:53:57 +02:00
Nick Avramidis
e5cdcc1e81
Translated using Weblate (Greek)
...
Currently translated at 1.9% (1 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/el/
2019-04-28 13:53:44 +02:00
Nick Avramidis
f7d2800f77
Translated using Weblate (Greek)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/el/
2019-04-28 13:53:31 +02:00
Weblate
d35317273d
Merge branch 'origin/master' into Weblate
2019-04-23 01:05:11 +02:00
cristianjav
b6776c47ad
Translated using Weblate (Spanish)
...
Currently translated at 77.9% (60 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/es/
2019-04-23 01:05:11 +02:00
cristianjav
abaa2b2dea
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: ospos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/es/
2019-04-23 01:04:59 +02:00
cristianjav
6120f8d613
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/es/
2019-04-23 01:04:48 +02:00
cristianjav
4b12c49b6e
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/es/
2019-04-23 01:04:36 +02:00
cristianjav
cea173a53a
Translated using Weblate (Spanish)
...
Currently translated at 86.2% (25 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/es/
2019-04-23 01:04:22 +02:00
FrancescoUK
ee3e8f8424
Merge pull request #2429 from josh-tf/master
...
fix typo with lang string
2019-04-22 08:41:29 +01:00
Josh Bowden
a70545abd2
fix missing underscore from lang string
2019-04-22 17:29:10 +10:00
Josh Bowden
bd55624470
fix typo with lang string
2019-04-22 13:47:14 +10:00
Steve Ireland
41c282bf85
Merge pull request #2427 from opensourcepos/fix-taxgroup
...
Fix Tax Group
2019-04-21 13:42:42 -04:00
Steve Ireland
e740d8665f
Fix Tax Group
2019-04-21 13:33:25 -04:00
Steve Ireland
ddcd5a7ae4
Fix Send Invoice PDF
2019-04-21 11:25:14 -04:00
Weblate
9ccb9779bf
Merge branch 'origin/master' into Weblate
2019-04-20 18:33:39 +02:00
Karin
9672d70853
Translated using Weblate (Spanish)
...
Currently translated at 72.7% (56 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/es/
2019-04-20 18:33:36 +02:00
Robby Triadi Susanto
889300c699
Translated using Weblate (Indonesian)
...
Currently translated at 75.0% (27 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/id/
2019-04-20 18:33:24 +02:00
Robby Triadi Susanto
7495ba7fb4
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/id/
2019-04-20 18:33:14 +02:00
Steve Ireland
12edac37eb
Merge pull request #2425 from josh-tf/master
...
fix typo with lang string w/ variable
2019-04-20 10:43:30 -04:00
Josh Bowden
0e2e4d722b
fix typo with lang string w/ variable
2019-04-18 17:15:50 +10:00
Steve Ireland
ca3b56c760
Merge pull request #2420 from opensourcepos/fix-sales-tax-migration
...
Fix Sales Tax Migration
2019-04-14 10:13:33 -04:00
alexandr0g
a1cba7fc6a
Translated using Weblate (Spanish)
...
Currently translated at 70.1% (54 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/es/
2019-04-08 20:50:23 +02:00
Leandro Sbrissa
4084f75838
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/pt_BR/
2019-04-08 20:50:13 +02:00
Leandro Sbrissa
5c4108dc08
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (128 of 128 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/pt_BR/
2019-04-08 20:50:03 +02:00
alexandr0g
842c365532
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/es/
2019-04-08 20:49:53 +02:00
Leandro Sbrissa
007e03d248
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (278 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/pt_BR/
2019-04-08 20:49:43 +02:00
alexandr0g
3f81d1872c
Translated using Weblate (Spanish)
...
Currently translated at 8.3% (3 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/es/
2019-04-08 20:49:33 +02:00
Leandro Sbrissa
607cffb902
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/pt_BR/
2019-04-08 20:49:23 +02:00
Steve Ireland
ae1fb3cac1
Fix Sales Tax Migration
2019-04-07 14:54:21 -04:00
Eugen Sclavone
2c4114765a
Translated using Weblate (Romanian)
...
Currently translated at 28.5% (6 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/ro/
2019-03-27 00:34:23 +01:00
khao_lek
16e508777a
Translated using Weblate (Thai)
...
Currently translated at 68.7% (119 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/th/
2019-03-27 00:34:23 +01:00
Aril Apria Susanto
a035cab88b
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/id/
2019-03-27 00:34:23 +01:00
Natig Asad
9c62164512
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/az/
2019-03-27 00:34:23 +01:00
Natig Asad
d69a8b79ab
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (128 of 128 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/az/
2019-03-27 00:34:23 +01:00
khao_lek
26fbbd8113
Translated using Weblate (Thai)
...
Currently translated at 100.0% (108 of 108 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/th/
2019-03-27 00:34:23 +01:00
Aril Apria Susanto
86604f4c50
Translated using Weblate (Indonesian)
...
Currently translated at 99.0% (107 of 108 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/id/
2019-03-27 00:34:23 +01:00
khao_lek
7f6621ae74
Translated using Weblate (Thai)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/th/
2019-03-27 00:34:23 +01:00
Aril Apria Susanto
98bb149127
Translated using Weblate (Indonesian)
...
Currently translated at 98.9% (275 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/id/
2019-03-27 00:34:23 +01:00
Natig Asad
d55e5c1769
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (278 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/az/
2019-03-27 00:34:23 +01:00
khao_lek
0bbd62a53b
Translated using Weblate (Thai)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/th/
2019-03-27 00:34:23 +01:00
Natig Asad
921b4966e4
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/az/
2019-03-27 00:34:23 +01:00
khao_lek
5c667b7deb
Translated using Weblate (Thai)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/th/
2019-03-27 00:34:23 +01:00
Aril Apria Susanto
ef9ab3bc4b
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/id/
2019-03-27 00:34:23 +01:00
FrancescoUK
84c1a8eb39
Merge pull request #2412 from opensourcepos/sales-summary-cashups
...
Adapt Cashups to new Summary Payments Report
2019-03-23 17:43:50 +00:00
Steve Ireland
4ae1c575fc
Adapt Cashups to new Sales Summary Report
2019-03-23 10:36:30 -04:00
Weblate
aafa614520
Remove duplicated lines
2019-03-23 14:12:43 +01:00
Weblate
bde34dc342
Remove duplicate strings
2019-03-21 08:12:40 +01:00
Weblate
b425f8b22a
Sync + fix language files
2019-03-20 19:07:28 +01:00
Weblate
969336248c
Merge remote-tracking branch 'origin/master'
2019-03-18 22:58:26 +01:00
WebShells
003a6b0bb1
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (77 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/ar_EG/
2019-03-18 22:53:18 +01:00
WebShells
916782edba
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/ar_EG/
2019-03-18 22:53:08 +01:00
tomer
ad6d325cc8
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/he/
2019-03-18 22:52:58 +01:00
WebShells
03b1a84f98
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/ar_EG/
2019-03-18 22:52:53 +01:00
WebShells
647e7ec49f
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (128 of 128 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/ar_EG/
2019-03-18 22:52:42 +01:00
WebShells
39e7d102bd
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (108 of 108 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/ar_EG/
2019-03-18 22:52:32 +01:00
WebShells
fae7fc986e
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/ar_EG/
2019-03-18 22:52:22 +01:00
tomer
a6e6f8278d
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (278 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/he/
2019-03-18 22:52:12 +01:00
WebShells
3c3c10d843
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (278 of 278 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/ar_EG/
2019-03-18 22:52:07 +01:00
tomer
749aa1831a
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/he/
2019-03-18 22:51:57 +01:00
WebShells
8f8d671ea1
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (29 of 29 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/ar_EG/
2019-03-18 22:51:51 +01:00
WebShells
5238ce2ade
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/ar_EG/
2019-03-18 22:51:40 +01:00
FrancescoUK
bbcefa1753
Fix language files (remove unused strings)
2019-03-17 16:30:16 +00:00
FrancescoUK
a146bbaa86
Reinstate removed en-GB and en-US translations
2019-03-16 18:45:59 +00:00
FrancescoUK
1bf99fd477
Add Docker container depends_on and restart rules
2019-03-16 18:43:06 +00:00
jekkos
5d047303a0
Sync language files + add script to .gitignore
2019-03-16 14:38:01 +01:00
Weblate
92b5bd2514
Merge branch 'origin/master' into Weblate
2019-03-16 14:20:39 +01:00
tomer
606be6f970
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/he/
2019-03-16 14:20:39 +01:00
khao_lek
519f1a9aa5
Translated using Weblate (Thai)
...
Currently translated at 89.0% (114 of 128 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/th/
2019-03-16 14:20:28 +01:00
tomer
9e585072cd
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (128 of 128 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/he/
2019-03-16 14:20:22 +01:00
tomer
09ab671285
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/he/
2019-03-16 14:20:12 +01:00
Dinuka Dilruwan Perera
1e3886e37e
Translated using Weblate (Italian)
...
Currently translated at 98.0% (51 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/it/
2019-03-16 14:20:01 +01:00
khao_lek
35f5aa1ea3
Translated using Weblate (Thai)
...
Currently translated at 62.3% (172 of 276 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/th/
2019-03-16 14:19:51 +01:00
tomer
7ff878bfe1
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (276 of 276 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/he/
2019-03-16 14:19:46 +01:00
khao_lek
a3b0cc9f14
Translated using Weblate (Thai)
...
Currently translated at 100.0% (28 of 28 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/th/
2019-03-16 14:19:35 +01:00
tomer
e201f9adf0
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (28 of 28 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/he/
2019-03-16 14:19:30 +01:00
Hezbullah Shah
3e69c3f683
Added translation using Weblate (Urdu (Pakistan))
2019-03-16 14:19:18 +01:00
WShells
6910efe526
Attributes missing language
...
Attributes missing language string fixed.
2019-03-15 23:46:16 +02:00
FrancescoUK
3e4964ada3
Merge pull request #2404 from WebShells/master
...
Customer Name for Due Sales & System info changes
2019-03-15 21:36:01 +00:00
WShells
e5927f94c6
Update system_info.php
2019-03-15 19:49:57 +02:00
WebShells
a2b10612c5
Line breaks
...
Added line breaks to help easily read issue template sections
2019-03-15 19:46:59 +02:00
WebShells
a386a0b485
Added Copy to Clipboard
...
Few changes including copy to clipboard section in order to copy the text in same format.
2019-03-15 18:37:01 +02:00
WShells
5f9ef6cf4d
Update register.php
2019-03-15 00:57:02 +02:00
WebShells
37d95fe75e
Merge branch 'master' of https://github.com/WebShells/WS
2019-03-14 22:33:32 +02:00
WebShells
531805be14
Minor System Info changes
...
Few editions as requested
2019-03-14 22:31:06 +02:00
WShells
d419ffbdab
Update register.php
2019-03-14 22:22:22 +02:00
WebShells
ce6aed67d6
Added en-GB Lang
...
Added en-GB Lang
2019-03-14 22:19:23 +02:00
WebShells
0ecba4c170
Customer Name Required
...
Customer Name required in order to continue the sales once due payment is selected.
2019-03-14 19:43:56 +02:00
FrancescoUK
6de77f0ebb
Merge pull request #2400 from opensourcepos/language_patch
...
Update config_lang.php
2019-03-14 07:39:43 +00:00
objecttothis
49419ac204
Update config_lang.php
2019-03-14 10:54:25 +04:00
FrancescoUK
5efe04930e
Merge pull request #2402 from opensourcepos/attribute_bug_patch
...
Update Attribute.php
2019-03-14 06:25:32 +00:00
objecttothis
185cf88534
Update Attribute.php
...
Remove blank line
2019-03-14 10:05:39 +04:00
objecttothis
2dca4785e1
Update Attribute.php
...
Without this else if the change from text to dropdown fails but no actual query is made since the query to update the attribute type gets made by the save_definition function.
2019-03-14 10:04:46 +04:00
objecttothis
0db8f2928f
Update config_lang.php
...
This is to correct a missing language line from integrations. @jekkos can you run your script to propagate en-US language lines to the rest of the languages and in weblate?
2019-03-14 09:46:25 +04:00
objecttothis
ce7b13a633
Merge pull request #2394 from opensourcepos/add_iso_currency_code
...
Add iso currency code
2019-03-13 13:54:46 +04:00
objecttothis
2cd9c23ac0
Update 20190317102600_add_iso_4217.php
2019-03-13 13:53:14 +04:00
objecttothis
2e755c6806
Rename 3.4.0_add_iso_4217.sql to 3.3.0_add_iso_4217.sql
...
3.3.0 release
2019-03-13 13:52:21 +04:00
objecttothis
59260241cb
Update Language code definition
...
Removed two-character locales as those are deprecated.
2019-03-13 12:11:58 +04:00
objecttothis
75b548b81e
Update locale_config.php
...
Fix jquery to update currency code
2019-03-13 12:02:00 +04:00
objecttothis
8d8ab9add6
Currency code auto update
2019-03-12 13:23:40 +04:00
Steve Ireland
16c28f1062
Merge pull request #2396 from opensourcepos/fix-discount-amount-formatting
...
Fix discount amount formatting.
2019-03-10 18:00:30 -04:00
Weblate
e9af0abd95
Merge branch 'origin/master' into Weblate
2019-03-10 15:00:16 +01:00
Aril Apria Susanto
fb6fe3c2fa
Translated using Weblate (Indonesian)
...
Currently translated at 72.7% (56 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/id/
2019-03-10 15:00:11 +01:00
Aril Apria Susanto
7bca61fe2b
Translated using Weblate (Indonesian)
...
Currently translated at 58.3% (21 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/id/
2019-03-10 15:00:00 +01:00
jekkos
a46a874874
Sync language files
2019-03-10 14:58:34 +01:00
Steve Ireland
acf913f025
Fix discount amount formatting.
2019-03-09 19:01:53 -05:00
Steve Ireland
805dfbe4d3
Merge pull request #2395 from opensourcepos/summary-payments-2
...
Two more Payment Summary report fixes.
2019-03-09 16:59:13 -05:00
Steve Ireland
d242c65e99
Two more Payment Summary report fixes.
2019-03-09 16:34:49 -05:00
FrancescoUK
fb112e502b
Use networks: in docker-compose since links: is legacy
2019-03-09 13:26:16 +00:00
FrancescoUK
0199b29063
Summary report code refactoring
2019-03-09 09:44:56 +00:00
FrancescoUK
3f1ca2480c
Rename migration script
2019-03-09 09:15:15 +00:00
objecttothis
dd77bb5632
Language additions and code corrections
2019-03-08 12:15:16 +04:00
objecttothis
12104c21c6
Correct error in the code
2019-03-08 11:59:02 +04:00
objecttothis
f284823707
Add ISO currency code
2019-03-08 11:48:38 +04:00
objecttothis
34d3352d73
Create 20190317102600_add_iso_4217.php
2019-03-08 11:09:21 +04:00
objecttothis
1776de12ff
Update Attributes.php
...
Correcting variable naming.
2019-03-08 10:14:05 +04:00
Weblate
ccca81e2c8
Merge branch 'origin/master' into Weblate
2019-03-07 22:11:59 +01:00
khao_lek
a6de175f3c
Translated using Weblate (Thai)
...
Currently translated at 100.0% (108 of 108 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/th/
2019-03-07 22:11:58 +01:00
khao_lek
eb377781c8
Translated using Weblate (Thai)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/th/
2019-03-07 22:11:49 +01:00
Weerasakol Chawanotai
e536c859a7
Translated using Weblate (Thai)
...
Currently translated at 100.0% (27 of 27 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/th/
2019-03-07 22:11:39 +01:00
khao_lek
2e7c20142c
Translated using Weblate (Thai)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/th/
2019-03-07 22:11:30 +01:00
objecttothis
a55893930a
Create 3.4.0_add_iso_4217.sql
2019-03-07 16:01:03 +04:00
objecttothis
ea75574b82
Merge pull request #2393 from opensourcepos/add_DECIMAL_attribute_type
...
Add decimal attribute type
2019-03-07 15:20:02 +04:00
FrancescoUK
8f7e5297cd
Merge pull request #2391 from opensourcepos/payments-report
...
Improve the summary payments report.
2019-03-07 07:41:19 +00:00
Steve Ireland
09432c6450
Improve the summary payments report.
2019-03-06 19:27:58 -05:00
objecttothis
1afbe029b5
Correct indentation
2019-03-06 15:44:11 +04:00
objecttothis
74995a5ac1
Adding of decimal unit field
2019-03-06 15:42:04 +04:00
objecttothis
d79783f605
Create 3.4.0_decimal_attribute_type.sql
...
Adding migration script for database add of DECIMAL attribute type
2019-03-01 17:52:30 +04:00
objecttothis
5fe9e3f8d2
Create 20190301124900_decimal_attribute_type.php
...
Adding migration php file
2019-03-01 17:51:09 +04:00
objecttothis
f875c8e518
Changes to allow attribute type of DECIMAL
2019-03-01 17:48:20 +04:00
WebShells
80179339e8
Live Data Search
...
Live Data Search for Specific Customer Input Report/Detailed Reports section in order to search for a specific client rather than typing it's name in a fast way.
2019-03-01 01:58:50 +02:00
WShells
f3163198a0
Sync
...
Sync latest commits
2019-03-01 01:54:26 +02:00
WShells
6a654e4f49
Re-added config-wrapper
...
Re-align content of div/center align notice message.
2019-03-01 01:18:55 +02:00
Weblate
0f91feee2a
Merge branch 'origin/master' into Weblate
2019-02-27 22:52:03 +01:00
tomer
f1a0034f19
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (77 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/he/
2019-02-27 22:52:00 +01:00
tomer
78ec9d8e22
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/he/
2019-02-27 22:51:50 +01:00
tomer
b6e5a0f732
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (120 of 120 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/he/
2019-02-27 22:51:40 +01:00
tomer
a697df7de9
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: ospos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/he/
2019-02-27 22:51:30 +01:00
tomer
a728dc5d7f
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (12 of 12 strings)
Translation: ospos/messages
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/messages/he/
2019-02-27 22:51:20 +01:00
tomer
7994803d65
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/he/
2019-02-27 22:51:11 +01:00
tomer
9b666bdc40
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (108 of 108 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/he/
2019-02-27 22:51:01 +01:00
tomer
27c372e891
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (33 of 33 strings)
Translation: ospos/item_kits
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/item_kits/he/
2019-02-27 22:50:51 +01:00
tomer
313727ca5c
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (68 of 68 strings)
Translation: ospos/giftcards
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/giftcards/he/
2019-02-27 22:50:41 +01:00
tomer
ea21970e5e
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (19 of 19 strings)
Translation: ospos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/he/
2019-02-27 22:50:31 +01:00
tomer
794020921a
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: ospos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/he/
2019-02-27 22:50:21 +01:00
Natig Asad
8a389a8ab9
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/az/
2019-02-27 22:50:01 +01:00
FrancescoUK
defb8d0d6f
Merge pull request #2364 from WebShells/Stats
...
System & Installation Info
2019-02-27 20:26:10 +00:00
FrancescoUK
3f89612830
Merge pull request #2379 from opensourcepos/attribute_conversion_fixes
...
Attribute conversion fixes
2019-02-27 20:25:09 +00:00
objecttothis
0e6eac9375
Update Attributes.php
...
Correcting variable name. adding parameterization instead of php concatenate.
2019-02-27 19:43:24 +04:00
objecttothis
54048802f2
Update attributes_lang.php
...
Parameterize Lang->Line and correct spelling of variable
2019-02-27 19:36:17 +04:00
objecttothis
fe4b6dc640
Update config.php
...
Security Restriction per #2377
2019-02-27 11:27:05 +04:00
jekkos
c08bfa643c
Fix attributes_lang.php
2019-02-26 23:55:06 +01:00
tomer
321f31c0c0
Added translation using Weblate (Hebrew)
2019-02-26 12:16:36 +01:00
tomer
17451c5b93
Added translation using Weblate (Hebrew)
2019-02-26 12:10:52 +01:00
tomer
67f134a14b
Added translation using Weblate (Hebrew)
2019-02-26 11:24:03 +01:00
objecttothis
aea080d6bd
Update Attribute.php
...
Without this else, TEXT->DROPDOWN fails. It just returns a simple success because no database changes are needed other than changing the definition_type which is not done here. This would also cause all other conversions not listed to automatically succeed, but we don't need to worry because those are restricted in the view to only ones that are actually supported.
2019-02-26 14:08:33 +04:00
tomer
14c1be25c9
Added translation using Weblate (Hebrew)
2019-02-26 11:02:41 +01:00
objecttothis
bcf82a0830
Update Attributes.php
...
Unified format changes. All lang lines should be _definition_ or _definitions_ but not a mix of both.
2019-02-26 13:49:48 +04:00
objecttothis
79b00e8040
Update attributes_lang.php
...
Unified format changes. All lang lines should be _definition_ or _definitions_ but not a mix of both.
2019-02-26 13:49:06 +04:00
objecttothis
8a935625ec
Update attributes_lang.php
...
The language line did not formerly exist and needed to be added. This line needs to get propagated to all other languages.
2019-02-26 13:43:01 +04:00
tomer
efd4e9aeb1
Added translation using Weblate (Hebrew)
2019-02-26 08:57:21 +01:00
tomer
3df719baee
Added translation using Weblate (Hebrew)
2019-02-26 08:51:48 +01:00
tomer
30dac982cc
Added translation using Weblate (Hebrew)
2019-02-26 08:11:18 +01:00
tomer
bd6b0d3543
Added translation using Weblate (Hebrew)
2019-02-25 22:28:59 +01:00
tomer
0d1925abae
Added translation using Weblate (Hebrew)
2019-02-25 22:04:23 +01:00
tomer
e39176e69a
Added translation using Weblate (Hebrew)
2019-02-25 21:45:46 +01:00
khao_lek
9fe3ce6679
Translated using Weblate (Thai)
...
Currently translated at 3.8% (3 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/th/
2019-02-25 21:39:40 +01:00
khao_lek
da4b6ba9d3
Translated using Weblate (Thai)
...
Currently translated at 67.6% (117 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/th/
2019-02-25 21:39:30 +01:00
tomer
0e3d8b54de
Translated using Weblate (Hebrew)
...
Currently translated at 97.7% (43 of 44 strings)
Translation: ospos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/he/
2019-02-25 21:39:20 +01:00
tomer
79ae61d173
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (2 of 2 strings)
Translation: ospos/error
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/error/he/
2019-02-25 21:39:10 +01:00
tomer
d194c2af27
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (7 of 7 strings)
Translation: ospos/enum
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/enum/he/
2019-02-25 21:39:00 +01:00
tomer
f8fa528ad9
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (35 of 35 strings)
Translation: ospos/employees
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/employees/he/
2019-02-25 21:38:46 +01:00
tomer
9470e9efd1
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/datepicker
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/datepicker/he/
2019-02-25 21:38:25 +01:00
khao_lek
483530507c
Translated using Weblate (Thai)
...
Currently translated at 98.0% (51 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/th/
2019-02-25 21:38:05 +01:00
tomer
70239374d3
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/he/
2019-02-25 21:37:55 +01:00
tomer
e9dc3d53e1
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (273 of 273 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/he/
2019-02-25 21:37:38 +01:00
khao_lek
8883a16f42
Translated using Weblate (Thai)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/th/
2019-02-25 21:37:26 +01:00
tomer
a47d1ff12e
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/he/
2019-02-25 21:37:21 +01:00
tomer
a4e644fe14
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/bootstrap_tables
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/bootstrap_tables/he/
2019-02-25 21:37:10 +01:00
tomer
60195d4757
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/he/
2019-02-25 21:37:00 +01:00
tomer
b32ce7958e
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/he/
2019-02-25 21:36:51 +01:00
tomer
9d7e0e0664
Added translation using Weblate (Hebrew)
2019-02-25 21:35:24 +01:00
tomer
1d705158ef
Added translation using Weblate (Hebrew)
2019-02-25 21:32:33 +01:00
tomer
b8d20abc76
Added translation using Weblate (Hebrew)
2019-02-25 21:25:28 +01:00
tomer
8a5e8656ee
Added translation using Weblate (Hebrew)
2019-02-25 20:54:49 +01:00
tomer
9f26e7b30f
Added translation using Weblate (Hebrew)
2019-02-25 20:49:12 +01:00
tomer
5d32252f2e
Added translation using Weblate (Hebrew)
2019-02-25 20:26:59 +01:00
tomer
30bbddc96d
Added translation using Weblate (Hebrew)
2019-02-25 17:59:24 +01:00
tomer
ebf6ee16d2
Added translation using Weblate (Hebrew)
2019-02-25 17:26:45 +01:00
tomer
75839b69ce
Added translation using Weblate (Hebrew)
2019-02-25 16:57:59 +01:00
tomer
7be9db2cc7
Added translation using Weblate (Hebrew)
2019-02-25 14:14:04 +01:00
tomer
49fcb988ad
Added translation using Weblate (Hebrew)
2019-02-25 12:55:07 +01:00
Weblate
1c4847f35e
Merge branch 'origin/master' into Weblate
2019-02-24 23:56:45 +01:00
Francisco xyko
f341d8bca3
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (77 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/pt_BR/
2019-02-24 23:56:42 +01:00
Natig Asad
723c3f4756
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: ospos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/az/
2019-02-24 23:56:32 +01:00
Francisco xyko
befde25d85
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (273 of 273 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/pt_BR/
2019-02-24 23:56:21 +01:00
Natig Asad
4987afbf6e
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (273 of 273 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/az/
2019-02-24 23:56:16 +01:00
Francisco xyko
4bddfb6a31
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/pt_BR/
2019-02-24 23:56:06 +01:00
Natig Asad
ada9438731
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/az/
2019-02-24 23:56:01 +01:00
FrancescoUK
c0b947f72e
Merge pull request #2362 from opensourcepos/convert_attribute_type
...
Add attribute type conversion, error checking.
2019-02-24 21:25:46 +00:00
Steve Ireland
66d80f9a78
Merge pull request #2343 from opensourcepos/indiagst-migration-fix
...
Haven't heard anything from anybody and since this has been reviewed a few times it should be relatively safe to merge. I wanted to have time to rebase my other change and retest this weekend.
2019-02-24 09:54:52 -05:00
Steve Ireland
2f710e80e7
Fixes a couple of problems with sales tax migration plus a couple of other problems.
2019-02-23 18:58:28 -05:00
WShells
1681afe65a
CSV check
2019-02-24 00:41:58 +02:00
WShells
85f7139dfe
Update system_info.php
2019-02-24 00:19:28 +02:00
WShells
8f59740a5b
Update config_lang.php
2019-02-24 00:19:12 +02:00
objecttothis
3b3b58bda4
Refactor regex to locale_helper to be used in other parts of the code.
2019-02-21 15:04:48 +04:00
objecttothis
fd99df8c2e
combined nested if statement into single if
2019-02-21 12:23:44 +04:00
objecttothis
994428eb7f
Fix bug preventing new Attribute from being anything but GROUP
2019-02-20 12:06:33 +04:00
objecttothis
20af6120b1
Corrections to $success
2019-02-20 10:32:40 +04:00
objecttothis
7875ecaa5b
Corrected $success references
2019-02-19 10:46:27 +04:00
objecttothis
c631cdbaf4
Added code to error out on incorrectly formatted data.
2019-02-18 17:02:12 +04:00
objecttothis
81033f55e5
Corrected code
2019-02-18 12:37:11 +04:00
WebShells
4db2d24ed4
Added system info to public
...
Added System Info to public, so people who are unable to login can make use of it in error reporting...
Added Git Link for Submitting an Issue
Forced Read only permissions on CSV files
Switched cases for csv files, in case writable show x and in case not writable show a check mark.
2019-02-17 22:48:14 +02:00
WebShells
958d9db0d0
Info Lang Add.
...
Server Info Lang Add.
2019-02-17 21:47:00 +02:00
WShells
59e3d0d84c
Removed commented lines
2019-02-17 15:28:12 +02:00
WShells
dbb25b7e17
Rename server_info.php to system_info.php
2019-02-17 02:07:33 +02:00
WShells
6afae3b855
Rename server_stats.php to server_info.php
2019-02-17 02:06:48 +02:00
WShells
2b2e8b1da0
Update server_stats.php
2019-02-17 00:40:02 +02:00
WShells
57e6863769
Indent...
2019-02-17 00:37:52 +02:00
WebShells
b0374d52aa
System Info
...
Helpful info about ospos installation, user settings, system settings, and files permissions...
2019-02-17 00:06:43 +02:00
WShells
7b318e411c
Merge pull request #2 from opensourcepos/master
...
..
2019-02-16 23:37:59 +02:00
WShells
069715fe4a
Merge branch 'master' into master
2019-02-16 23:32:37 +02:00
FrancescoUK
b72f1919e9
Merge pull request #2322 from erastus/timezone
...
fixed timezone (#2321 )
2019-02-16 17:49:01 +00:00
FrancescoUK
8431e4c1e6
Update locale_helper.php
2019-02-16 17:48:34 +00:00
jekkos
888c01282b
Translated using Weblate (Flemish)
...
Currently translated at 85.7% (18 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/nl_BE/
2019-02-16 14:55:45 +01:00
jekkos
67415e33a5
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/nl_BE/
2019-02-16 14:55:34 +01:00
Natig Asad
0dcb032b1d
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/datepicker
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/datepicker/az/
2019-02-16 14:55:24 +01:00
kevinyl18
d55cd787ad
Translated using Weblate (Indonesian)
...
Currently translated at 42.3% (11 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/id/
2019-02-16 14:55:13 +01:00
jekkos
be20d8cc1e
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/nl_BE/
2019-02-16 14:55:08 +01:00
objecttothis
e66c7bad24
Add attribute type conversion, error checking.
2019-02-15 17:03:31 +04:00
jekkos
98b39b2f0c
Sync language files
2019-02-14 23:50:18 +01:00
Weblate
255939c2a9
Merge branch 'origin/master' into Weblate
2019-02-14 23:33:24 +01:00
Natig Asad
7e6e038a9b
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (77 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/az/
2019-02-14 23:33:24 +01:00
Natig Asad
d20f0e045b
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/az/
2019-02-14 23:33:13 +01:00
eugen-sclavone
31b07d8843
Translated using Weblate (Romanian)
...
Currently translated at 96.5% (167 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/ro/
2019-02-14 23:33:03 +01:00
Natig Asad
1ce9691911
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/az/
2019-02-14 23:32:57 +01:00
Natig Asad
86982f6d47
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (120 of 120 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/az/
2019-02-14 23:32:46 +01:00
eugen-sclavone
4988122ee3
Translated using Weblate (Romanian)
...
Currently translated at 9.6% (5 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/ro/
2019-02-14 23:32:35 +01:00
Natig Asad
a32947e149
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/az/
2019-02-14 23:32:30 +01:00
Natig Asad
9387b078c6
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: ospos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/az/
2019-02-14 23:32:20 +01:00
khao_lek
300ba1bc63
Translated using Weblate (Thai)
...
Currently translated at 100.0% (12 of 12 strings)
Translation: ospos/messages
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/messages/th/
2019-02-14 23:32:09 +01:00
Natig Asad
c276318790
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (12 of 12 strings)
Translation: ospos/messages
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/messages/az/
2019-02-14 23:32:04 +01:00
khao_lek
b283011436
Translated using Weblate (Thai)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/th/
2019-02-14 23:31:54 +01:00
nikopoler
786e32944e
Translated using Weblate (Russian)
...
Currently translated at 87.5% (7 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/ru/
2019-02-14 23:31:48 +01:00
wd-code
7e2a82ee19
Translated using Weblate (French)
...
Currently translated at 62.5% (5 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/fr/
2019-02-14 23:31:43 +01:00
Natig Asad
7c77d6841a
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/az/
2019-02-14 23:31:38 +01:00
khao_lek
2e107b888a
Translated using Weblate (Thai)
...
Currently translated at 99.0% (107 of 108 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/th/
2019-02-14 23:31:27 +01:00
nikopoler
a1b9a84ca7
Translated using Weblate (Russian)
...
Currently translated at 93.5% (101 of 108 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/ru/
2019-02-14 23:31:22 +01:00
Natig Asad
a83105ecb8
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (108 of 108 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/az/
2019-02-14 23:31:16 +01:00
khao_lek
51baef438a
Translated using Weblate (Thai)
...
Currently translated at 100.0% (33 of 33 strings)
Translation: ospos/item_kits
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/item_kits/th/
2019-02-14 23:31:05 +01:00
Natig Asad
9d336a1804
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (33 of 33 strings)
Translation: ospos/item_kits
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/item_kits/az/
2019-02-14 23:31:00 +01:00
Natig Asad
430586a68b
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (68 of 68 strings)
Translation: ospos/giftcards
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/giftcards/az/
2019-02-14 23:30:50 +01:00
Natig Asad
a0b397a74a
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (19 of 19 strings)
Translation: ospos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/az/
2019-02-14 23:30:39 +01:00
Natig Asad
c4144405a8
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: ospos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/az/
2019-02-14 23:30:29 +01:00
eugen-sclavone
2a1d8d0751
Translated using Weblate (Romanian)
...
Currently translated at 100.0% (2 of 2 strings)
Translation: ospos/error
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/error/ro/
2019-02-14 23:30:19 +01:00
Natig Asad
6e7259dd83
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (7 of 7 strings)
Translation: ospos/enum
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/enum/az/
2019-02-14 23:30:08 +01:00
Natig Asad
bcb8c4b0fb
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (35 of 35 strings)
Translation: ospos/employees
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/employees/az/
2019-02-14 23:29:57 +01:00
khao_lek
92212a30ae
Translated using Weblate (Thai)
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/datepicker
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/datepicker/th/
2019-02-14 23:29:47 +01:00
Natig Asad
fccbdf844a
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/datepicker
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/datepicker/az/
2019-02-14 23:29:41 +01:00
eugen-sclavone
013dc576b6
Translated using Weblate (Romanian)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/ro/
2019-02-14 23:29:30 +01:00
Natig Asad
6f63a4a369
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/az/
2019-02-14 23:29:24 +01:00
Natig Asad
c740781df2
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (272 of 272 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/az/
2019-02-14 23:29:13 +01:00
eugen-sclavone
0abaa4bc04
Translated using Weblate (Romanian)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/ro/
2019-02-14 23:29:02 +01:00
wd-code
5d5e316b39
Translated using Weblate (French)
...
Currently translated at 47.2% (17 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/fr/
2019-02-14 23:28:55 +01:00
Natig Asad
53714acd27
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/az/
2019-02-14 23:28:50 +01:00
khao_lek
4317e82a7b
Translated using Weblate (Thai)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/bootstrap_tables
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/bootstrap_tables/th/
2019-02-14 23:28:39 +01:00
Natig Asad
8d19f1e41b
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/bootstrap_tables
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/bootstrap_tables/az/
2019-02-14 23:28:33 +01:00
khao_lek
b13b12ec6a
Translated using Weblate (Thai)
...
Currently translated at 96.1% (25 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/th/
2019-02-14 23:28:23 +01:00
eugen-sclavone
83cd4c6d50
Translated using Weblate (Romanian)
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/ro/
2019-02-14 23:28:18 +01:00
Natig Asad
2ec26f4357
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/az/
2019-02-14 23:28:12 +01:00
nikopoler
bd18fd5577
Translated using Weblate (Russian)
...
Currently translated at 95.5% (64 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/ru/
2019-02-14 23:28:01 +01:00
eugen-sclavone
3a51371834
Translated using Weblate (Romanian)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/ro/
2019-02-14 23:27:55 +01:00
Natig Asad
9c060e8c9e
Translated using Weblate (Azerbaijani)
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/az/
2019-02-14 23:27:50 +01:00
FrancescoUK
9e2f9f1322
Add en_GB translation for Integrations
2019-02-10 12:28:35 +00:00
FrancescoUK
be4460d1b6
Merge pull request #2344 from opensourcepos/fix-tax-group-rendering
...
This fixes the improper display of the tax group
2019-02-10 12:11:57 +00:00
FrancescoUK
4d474f5952
Merge pull request #2357 from opensourcepos/cash-rounding-for-chile
...
Cash rounding for Chile requires rounding to the nearest 10 pesos.
2019-02-10 12:03:33 +00:00
Steve Ireland
b3f53fa627
Fix tax group rendering issue triggered by "% CE"
2019-02-09 16:33:45 -05:00
Steve Ireland
8bf819abb9
Cash rounding for Chili requires rounding to the nearest 10 pesoes.
2019-02-09 15:51:46 -05:00
Steve Ireland
a33db6f055
Merge pull request #2356 from opensourcepos/stock-type-visibility
...
Allow user excluded from item kit maintenance to maintain stock type.
2019-02-09 13:02:08 -05:00
Steve Ireland
03fe400e9e
Allow user excluded from item kit maintenance to maintain stock type.
2019-02-09 11:56:49 -05:00
jekkos
929f3e63fc
Show 6 character git hash instead of 5 ( #2352 )
2019-02-08 08:26:16 +01:00
objecttothis
3b9bf5eaa4
Correcting positioning of the ospos.css file
...
I wasn't aware of the need to build the project before css changes would take effect nor that I could just add `?debug=true` to the URL to see changes. I've put the line back in its original position and it works without other changes.
2019-02-05 09:40:27 +01:00
objecttothis
81b056b8f0
Merge pull request #2330 from opensourcepos/third_party_integrations
...
Third party integrations
2019-02-04 17:07:03 +04:00
objecttothis
2d7ea8d4e7
modified CSS id to be unique
...
Rather than override an existing CSS id with potential consequences I just created a unique ID in ospos.css
2019-02-04 13:47:43 +04:00
objecttothis
381b741f42
Add css for integrations header
2019-02-04 13:46:08 +04:00
objecttothis
9b6edaea4d
Move ospos.css below opensourcepos.min.css
...
This prevents changes in ospos.css from being ignored
2019-02-04 13:44:40 +04:00
jekkos
9527ad4f33
Use dev as default commit hash ( #2324 )
2019-02-02 18:44:12 +01:00
jekkos
bf28072f0d
Try to reuse $rev variable in pre_install secion ( #2324 )
2019-02-02 15:16:10 +01:00
jekkos
231f7485fe
Temporarily fix supplier update ( #2309 )
2019-02-02 14:36:05 +01:00
jekkos
6f75ec3ae2
Skip india GST migration if it ran before + force cleanup ( #2302 )
2019-02-02 14:08:20 +01:00
jekkos
2674fbd03f
Disable .gitattributes ident ( #2324 )
2019-02-02 14:08:20 +01:00
jekkos
a36bfdd32d
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/datepicker
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/datepicker/nl_BE/
2019-02-02 12:47:12 +01:00
Weblate
b75f486e6e
Merge branch 'origin/master' into Weblate
2019-02-01 22:05:48 +01:00
Héctor Martín
618465bf80
Translated using Weblate (Spanish)
...
Currently translated at 67.5% (52 of 77 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/es/
2019-02-01 22:05:45 +01:00
jekkos
33f4471364
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/nl_BE/
2019-02-01 22:05:31 +01:00
Héctor Martín
7cb5bb98ff
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/es/
2019-02-01 22:05:17 +01:00
haygcao
71a1c2ac08
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 69.2% (18 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/zh_Hans/
2019-02-01 22:05:01 +01:00
jekkos
80a1c73652
Ignore apache rewrite rule for let's encrypt challenge renewal
2019-02-01 21:14:08 +01:00
objecttothis
00a16ac50b
Update manage.php
...
Fixed another forgotten change
2019-01-31 16:42:58 +04:00
objecttothis
d3155ed8be
Merge pull request #2325 from opensourcepos/attribute_value_duplicate_check
...
Check to see if attribute_value already exists
2019-01-30 13:29:09 +04:00
objecttothis
749c41c43c
Merge pull request #2333 from opensourcepos/attribute_migrations_values_fix
...
Add IGNORE to insert and UNIQUE constraint to attribute_value
2019-01-30 13:27:02 +04:00
objecttothis
ab2a46ff22
Add IGNORE to insert and UNIQUE constraint to attribute_value
2019-01-30 13:08:12 +04:00
objecttothis
2c06edba02
Remove function and combine call to reduce redundant code.
2019-01-30 11:30:28 +04:00
objecttothis
6b12cd6cc7
Correct missing change
...
Not sure how this didn't get changed before. I had the change in my test database. I must have just missed it.
2019-01-30 10:35:41 +04:00
Steve Ireland
cb79bbe5ef
Merge pull request #2332 from opensourcepos/fix-upgrade-sequence
...
India GST script is dependent on the 3.3.0 script.
2019-01-29 21:43:00 -05:00
Steve Ireland
57fa8c1a4b
India GST script is dependent on the 3.3.0 script.
2019-01-29 21:30:52 -05:00
objecttothis
f238bc7d40
Rename mailchimp_config.php to integrations_config.php
...
Rename file to match generic integrations rather than specific mailchimp
2019-01-29 18:27:41 +04:00
objecttothis
4d13cf2f67
Converting mailchimp config to integrations config
2019-01-29 18:25:44 +04:00
objecttothis
e080873ec3
Check to see if attribute_value already exists
2019-01-28 18:16:17 +04:00
Erastus
db6ee6839a
fixed timezone ( #2321 )
2019-01-26 14:47:36 -06:00
Weblate
74417024b4
Merge branch 'origin/master' into Weblate
2019-01-20 01:05:47 +01:00
Marek Borowik
322dc85e2c
Added translation using Weblate (Polish)
2019-01-20 01:05:44 +01:00
Steve Ireland
740305c2ca
Merge pull request #2314 from opensourcepos/fix-sales-tax-amount
...
It's a small change and I couldn't have introduced too many problems. I tested the change locally to confirm that it works (at least with gift cards). So I went ahead and merged this change.
2019-01-16 22:04:12 -05:00
Steve Ireland
0dc5a8e3a2
Rename sales_tax_amount to sale_tax_amount
2019-01-16 21:45:55 -05:00
FrancescoUK
cbfb8e5a89
Merge pull request #2289 from opensourcepos/refactor-tax-config
...
Refactor Tax Configuration
2019-01-14 10:59:09 +00:00
bashar alghnnam
2c76f90f67
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 43.2% (29 of 67 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/ar_EG/
2019-01-13 13:21:17 +01:00
bashar alghnnam
32813fc65e
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 94.7% (164 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/ar_EG/
2019-01-13 13:21:17 +01:00
Albert García
2ed5ff3c02
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (12 of 12 strings)
Translation: ospos/messages
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/messages/es/
2019-01-13 13:21:17 +01:00
Albert García
86144b7816
Translated using Weblate (Spanish)
...
Currently translated at 96.6% (260 of 269 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/es/
2019-01-13 13:21:17 +01:00
Albert García
687229dbec
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (66 of 66 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/es/
2019-01-13 13:21:17 +01:00
jekkos
f911cebae2
Revert translation update + bump migration script version
2019-01-13 13:18:51 +01:00
jekkos
02d7588e59
Add config item for default order discount
2019-01-13 13:18:51 +01:00
Steve Ireland
20cb007f3c
Refactor Tax Configuration
2019-01-10 21:42:15 -05:00
FrancescoUK
74f5bb17bb
Update to Bootswatch and Bootstrap 3.4.0
2019-01-07 21:51:36 +00:00
jekkos
acba94baf2
Fix broken dialogs after column visiblity toggle ( #2132 )
2019-01-07 18:44:24 +01:00
jekkos
6792c829b2
Cleanup duplicated field
2019-01-07 18:44:24 +01:00
FrancescoUK
0ada6ba25d
Fix login missing version issue
2019-01-06 17:21:21 +00:00
Weblate
85564d9201
Merge branch 'origin/master' into Weblate
2019-01-05 11:53:48 +01:00
jekkos
489ed6c23f
Translated using Weblate (Flemish)
...
Currently translated at 99.6% (268 of 269 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/nl_BE/
2019-01-05 11:53:47 +01:00
jekkos
f2f2e52abe
Fix flemish discount translation
2019-01-03 23:53:54 +01:00
FrancescoUK
205cd2fce7
Fix en-GB translations
2019-01-02 20:20:21 +00:00
jekkos
6c685f89b8
Fix amount formatting in expenses ( #2085 )
2018-12-30 18:27:58 +01:00
jekkos
4261613316
Fix migration message, add UK translation ( #2247 )
2018-12-30 18:27:58 +01:00
jekkos
8b72f9b46a
Translated using Weblate (English (United Kingdom))
...
Currently translated at 100.0% (269 of 269 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/en_GB/
2018-12-30 15:24:42 +01:00
Ahmet BAYKAL
847e7e2598
Translated using Weblate (Turkish)
...
Currently translated at 44.7% (30 of 67 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/tr/
2018-12-30 13:41:07 +01:00
Francisco xyko
448971c8ec
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (67 of 67 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/pt_BR/
2018-12-30 13:41:07 +01:00
Francisco xyko
f8519b8d3f
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/pt_BR/
2018-12-30 13:41:06 +01:00
Francisco xyko
47892c9866
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/pt_BR/
2018-12-30 13:41:06 +01:00
Francisco xyko
4a4ef2da4b
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (120 of 120 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/pt_BR/
2018-12-30 13:41:05 +01:00
Johannes Roesch
d506099869
Translated using Weblate (German)
...
Currently translated at 100.0% (12 of 12 strings)
Translation: ospos/messages
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/messages/de/
2018-12-30 13:41:05 +01:00
Francisco xyko
7203737bd5
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (108 of 108 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/pt_BR/
2018-12-30 13:41:05 +01:00
Francisco xyko
d8a65a6921
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/pt_BR/
2018-12-30 13:41:04 +01:00
Jenaro Centeno
7f90cfcdac
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (269 of 269 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/es_MX/
2018-12-30 13:41:04 +01:00
Francisco xyko
7e497ca4c2
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (269 of 269 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/pt_BR/
2018-12-30 13:41:03 +01:00
Jenaro Centeno
0448a02c84
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (36 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/es_MX/
2018-12-30 13:41:03 +01:00
Jenaro Centeno
7bdaafce08
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/bootstrap_tables
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/bootstrap_tables/es_MX/
2018-12-30 13:41:02 +01:00
Jenaro Centeno
1511791dbd
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/es_MX/
2018-12-30 13:41:02 +01:00
Francisco xyko
2f1c212f4a
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/pt_BR/
2018-12-30 13:41:01 +01:00
Jenaro Centeno
8877e86af4
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 100.0% (66 of 66 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/es_MX/
2018-12-30 13:41:01 +01:00
Francisco xyko
d0fb8c789a
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (66 of 66 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/pt_BR/
2018-12-30 13:41:00 +01:00
Johannes Roesch
2fa03cdb22
Translated using Weblate (German)
...
Currently translated at 100.0% (120 of 120 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/de/
2018-12-26 21:35:16 +01:00
Johannes Roesch
78573e02e7
Translated using Weblate (German)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/de/
2018-12-26 21:27:06 +01:00
Johannes Roesch
f7196f7a15
Translated using Weblate (German)
...
Currently translated at 100.0% (68 of 68 strings)
Translation: ospos/giftcards
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/giftcards/de/
2018-12-26 21:21:25 +01:00
Johannes Roesch
28bb50f205
Translated using Weblate (German)
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/datepicker
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/datepicker/de/
2018-12-26 21:18:31 +01:00
Johannes Roesch
bc006ce1c9
Translated using Weblate (German)
...
Currently translated at 100.0% (21 of 21 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/de/
2018-12-26 21:16:33 +01:00
Johannes Roesch
41c58b04fc
Translated using Weblate (German)
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/de/
2018-12-26 21:12:21 +01:00
Johannes Roesch
e29c8b64f2
Translated using Weblate (German)
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/de/
2018-12-26 21:07:17 +01:00
Johannes Roesch
8bc375f2e7
Translated using Weblate (German)
...
Currently translated at 94.1% (113 of 120 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/de/
2018-12-26 15:52:55 +01:00
Johannes Roesch
754df74512
Translated using Weblate (German)
...
Currently translated at 100.0% (173 of 173 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/de/
2018-12-26 15:34:26 +01:00
Johannes Roesch
5b6cc424ff
Translated using Weblate (German)
...
Currently translated at 100.0% (33 of 33 strings)
Translation: ospos/item_kits
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/item_kits/de/
2018-12-26 15:06:36 +01:00
Johannes Roesch
f82e69defc
Translated using Weblate (German)
...
Currently translated at 100.0% (19 of 19 strings)
Translation: ospos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/de/
2018-12-26 14:56:26 +01:00
Johannes Roesch
d00fd6a90a
Translated using Weblate (German)
...
Currently translated at 97.7% (43 of 44 strings)
Translation: ospos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/de/
2018-12-26 14:49:00 +01:00
Johannes Roesch
4f69b961dc
Translated using Weblate (German)
...
Currently translated at 98.5% (265 of 269 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/de/
2018-12-26 14:31:50 +01:00
Johannes Roesch
0919042321
Translated using Weblate (German)
...
Currently translated at 100.0% (108 of 108 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/de/
2018-12-26 14:18:25 +01:00
Johannes Roesch
9bfd6e13f3
Translated using Weblate (German)
...
Currently translated at 86.5% (58 of 67 strings)
Translation: ospos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/de/
2018-12-26 14:12:07 +01:00
Johannes Roesch
be4715b6d6
Translated using Weblate (German)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: ospos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/de/
2018-12-26 14:10:30 +01:00
Johannes Roesch
cbcbc70b91
Translated using Weblate (German)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/de/
2018-12-26 14:09:27 +01:00
Johannes Roesch
2601acc53a
Translated using Weblate (German)
...
Currently translated at 98.1% (106 of 108 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/de/
2018-12-26 14:08:31 +01:00
Johannes Roesch
8c0dd4398c
Translated using Weblate (German)
...
Currently translated at 91.8% (247 of 269 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/de/
2018-12-26 14:06:04 +01:00
Johannes Roesch
c49cc42997
Translated using Weblate (German)
...
Currently translated at 100.0% (66 of 66 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/de/
2018-12-26 13:50:13 +01:00
Johannes Roesch
0370c4c9d1
Translated using Weblate (German)
...
Currently translated at 100.0% (36 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/de/
2018-12-26 13:48:10 +01:00
Johannes Roesch
150eff28eb
Translated using Weblate (German)
...
Currently translated at 80.7% (21 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/de/
2018-12-26 13:46:13 +01:00
Jenaro Centeno
7d12a2fec9
Added translation using Weblate (Spanish (Mexico))
2018-12-26 01:55:37 +01:00
Jenaro Centeno
2d54317c2c
Added translation using Weblate (Spanish (Mexico))
2018-12-26 01:11:06 +01:00
Jenaro Centeno
369f011d8a
Added translation using Weblate (Spanish (Mexico))
2018-12-26 00:57:05 +01:00
Jenaro Centeno
385013da68
Added translation using Weblate (Spanish (Mexico))
2018-12-26 00:52:16 +01:00
Jenaro Centeno
2a5ee75dac
Added translation using Weblate (Spanish (Mexico))
2018-12-26 00:34:26 +01:00
jekkos
a5a0aa0e1b
Refresh langauge files
2018-12-24 20:50:13 +01:00
jekkos
804942cff5
Add warning if migration is needed ( #2247 )
2018-12-24 20:43:22 +01:00
Steve Ireland
6d43e8882d
Merge pull request #2202 from opensourcepos/india-gst
...
Add support for India GST
2018-12-23 11:27:36 -05:00
Steve Ireland
3220469837
Add support for India GST
2018-12-23 09:16:10 -05:00
FrancescoUK
e4d946fdc9
Fix en-GB translations ( #2222 )
2018-12-22 18:26:16 +00:00
Ethan Horseshoe
aa309028ea
Translated using Weblate (German)
...
Currently translated at 42.3% (11 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/de/
2018-12-22 15:21:29 +01:00
M.Sva
f4cdc527c3
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/ar_EG/
2018-12-22 15:21:29 +01:00
jekkos
6a47d60d35
Update turkish ( #2281 )
2018-12-22 15:17:42 +01:00
jekkos
e87c1d9210
Merge pull request #2269 from opensourcepos/attribute_lang_changes
...
As per #2222 , these are linguistic clarity changes in master.
2018-12-15 15:28:19 +01:00
WebShells
cabd232b3c
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/ar_EG/
2018-12-14 01:02:58 +01:00
Benjamin Kahlau
7c6fe8c272
Translated using Weblate (German)
...
Currently translated at 88.8% (144 of 162 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/de/
2018-12-14 01:02:58 +01:00
WebShells
c311d9a315
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (114 of 114 strings)
Translation: ospos/reports
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/reports/ar_EG/
2018-12-14 01:02:58 +01:00
WebShells
244cecd0a7
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (52 of 52 strings)
Translation: ospos/receivings
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/receivings/ar_EG/
2018-12-14 01:02:58 +01:00
WebShells
3d1176a9dd
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (39 of 39 strings)
Translation: ospos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/ar_EG/
2018-12-14 01:02:58 +01:00
WebShells
de62b9441c
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (12 of 12 strings)
Translation: ospos/messages
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/messages/ar_EG/
2018-12-14 01:02:58 +01:00
WebShells
17d80dd8ec
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/ar_EG/
2018-12-14 01:02:58 +01:00
WebShells
ec167cedd3
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (107 of 107 strings)
Translation: ospos/items
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/items/ar_EG/
2018-12-14 01:02:58 +01:00
WebShells
38bc7cacae
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (19 of 19 strings)
Translation: ospos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/ar_EG/
2018-12-14 01:02:58 +01:00
WebShells
cc5a9b5d09
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (44 of 44 strings)
Translation: ospos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/ar_EG/
2018-12-14 01:02:58 +01:00
WebShells
e9d00db912
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/datepicker
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/datepicker/ar_EG/
2018-12-14 01:02:58 +01:00
WebShells
ee702d9475
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (51 of 51 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/ar_EG/
2018-12-14 01:02:58 +01:00
Francisco xyko
1602404d32
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (263 of 263 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/pt_BR/
2018-12-14 01:02:58 +01:00
WebShells
b416b947ee
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (263 of 263 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/ar_EG/
2018-12-14 01:02:58 +01:00
mazbrili
dca79f6b0b
Translated using Weblate (Indonesian)
...
Currently translated at 47.2% (17 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/id/
2018-12-14 01:02:58 +01:00
WebShells
54f3fa37e6
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (36 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/ar_EG/
2018-12-14 01:02:58 +01:00
WebShells
4a14620c16
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/bootstrap_tables
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/bootstrap_tables/ar_EG/
2018-12-14 01:02:58 +01:00
Benjamin Kahlau
dd8585a1fb
Translated using Weblate (German)
...
Currently translated at 11.5% (3 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/de/
2018-12-14 01:02:58 +01:00
objecttothis
42c444e3d9
Translated using Weblate (English (United States))
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/en_US/
2018-12-14 01:02:58 +01:00
WebShells
cd8078fa4f
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/ar_EG/
2018-12-14 01:02:58 +01:00
Benjamin Kahlau
b6deb18e66
Translated using Weblate (German)
...
Currently translated at 98.4% (64 of 65 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/de/
2018-12-14 01:02:58 +01:00
objecttothis
5a907259ee
Translated using Weblate (English (United States))
...
Currently translated at 100.0% (65 of 65 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/en_US/
2018-12-14 01:02:58 +01:00
WebShells
d0bf52444c
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 100.0% (65 of 65 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/ar_EG/
2018-12-14 01:02:58 +01:00
objecttothis
41599bb11b
Merge branch 'master' into attribute_lang_changes
2018-12-13 14:40:52 +04:00
objecttothis
4cd0ed7ecb
As per #2222 , these are linguistic clarity changes in master.
2018-12-13 14:35:57 +04:00
jekkos
06a6f82015
Fix attribute search ( #2268 )
2018-12-12 23:20:25 +01:00
jekkos
26fdac75e3
Upgrade docker php version
2018-12-12 21:49:12 +01:00
Weblate
4ca07c8b2c
Merge branch 'origin/master' into Weblate
2018-12-09 14:17:31 +01:00
Gary Sze
21ae793784
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 83.3% (135 of 162 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/zh_Hant/
2018-12-09 14:17:28 +01:00
jekkos
4ee8207ec1
Update gitter URL link (point to new ospos room)
2018-12-07 00:26:04 +01:00
Gary Sze
6f0bfdc6bf
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 79.6% (129 of 162 strings)
Translation: ospos/sales
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/sales/zh_Hant/
2018-12-05 18:01:07 +01:00
Gary Sze
bdf834e40e
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 45.0% (23 of 51 strings)
Translation: ospos/customers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/customers/zh_Hant/
2018-12-05 18:01:06 +01:00
Gary Sze
aaac19ad20
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (65 of 65 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/zh_Hant/
2018-12-05 18:01:05 +01:00
jekkos
69522b751a
Added translation using Weblate (Malayalam)
2018-12-05 12:01:11 +01:00
Weblate
bea75566d6
Merge branch 'origin/master' into Weblate
2018-12-05 00:07:11 +01:00
Francisco xyko
20488c6a01
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/suppliers
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/suppliers/pt_BR/
2018-12-05 00:07:08 +01:00
Francisco xyko
809eceb8cb
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (39 of 39 strings)
Translation: ospos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/pt_BR/
2018-12-05 00:07:08 +01:00
Francisco xyko
df6fd28d24
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (12 of 12 strings)
Translation: ospos/messages
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/messages/pt_BR/
2018-12-05 00:07:08 +01:00
Francisco xyko
28c01e86e7
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/pt_BR/
2018-12-05 00:07:07 +01:00
mazbrili
381750c84d
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (8 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/id/
2018-12-05 00:07:07 +01:00
M.Sva
15b5e25a1a
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 87.5% (7 of 8 strings)
Translation: ospos/login
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/login/ar_EG/
2018-12-05 00:07:07 +01:00
mazbrili
2418f3b44b
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (33 of 33 strings)
Translation: ospos/item_kits
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/item_kits/id/
2018-12-05 00:07:06 +01:00
Francisco xyko
5ffc474fa4
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (44 of 44 strings)
Translation: ospos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/pt_BR/
2018-12-05 00:07:06 +01:00
Francisco xyko
1e0b2f6285
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/datepicker
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/datepicker/pt_BR/
2018-12-05 00:07:05 +01:00
mazbrili
8953c0af4c
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (20 of 20 strings)
Translation: ospos/datepicker
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/datepicker/id/
2018-12-05 00:07:05 +01:00
Francisco xyko
6bfe6a0035
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (262 of 262 strings)
Translation: ospos/config
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/config/pt_BR/
2018-12-05 00:07:05 +01:00
Francisco xyko
8f8fec39ab
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (36 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/pt_BR/
2018-12-05 00:07:04 +01:00
mazbrili
d29d004f3d
Translated using Weblate (Indonesian)
...
Currently translated at 11.1% (4 of 36 strings)
Translation: ospos/cashups
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/cashups/id/
2018-12-05 00:07:04 +01:00
Francisco xyko
5a15a29cea
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/pt_BR/
2018-12-05 00:07:03 +01:00
Francisco xyko
e57ae3e3ba
Translated using Weblate (English (United States))
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/en_US/
2018-12-05 00:07:03 +01:00
Francisco xyko
384e9b93f1
Translated using Weblate (English (United Kingdom))
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/en_GB/
2018-12-05 00:07:03 +01:00
M.Sva
cc0895bb9d
Translated using Weblate (Arabic (Egypt))
...
Currently translated at 11.5% (3 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/ar_EG/
2018-12-05 00:07:02 +01:00
Francisco xyko
dbbf8c0d40
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (65 of 65 strings)
Translation: ospos/common
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/common/pt_BR/
2018-12-05 00:07:02 +01:00
jekkos
70ea30efbd
Remove deprecated translations for custom fields ( #2253 )
2018-12-04 23:19:24 +01:00
objecttothis
41db04eb0e
Removed rows associated with custom fields in ospos_app_config
2018-12-04 23:00:30 +01:00
objecttothis
e432cd9b4e
Removed deprecated language lines pertaining to custom fields which no
...
longer exist as of 3.3.0
2018-12-04 23:00:30 +01:00
jekkos
2f3c75db25
Show attribute values in search results ( #2248 )
2018-12-03 23:09:11 +01:00
jekkos
38ad73cc70
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (39 of 39 strings)
Translation: ospos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/nl_BE/
2018-12-03 22:43:12 +01:00
jekkos
497befdf78
Sync language files ( #2253 )
2018-12-03 21:18:03 +01:00
jekkos
44ce09be0f
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (26 of 26 strings)
Translation: ospos/attributes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/attributes/nl_BE/
2018-12-02 02:03:57 +01:00
objecttothis
b1e123aaa1
Merge pull request #2246 from opensourcepos/attributes_migration_tweaks
...
Attributes migration tweaks
2018-11-29 10:20:12 +04:00
objecttothis
cc669eb347
Increase maximum varchar size to 255 for attribute_value
2018-11-27 17:37:27 +04:00
objecttothis
0509c24f31
Check for and exclude empty custom values not just NULL custom values
2018-11-27 17:35:25 +04:00
jekkos
3f3e1581ce
Extend request timeout if migration needs to be done ( #2241 )
2018-11-26 23:52:58 +01:00
jekkos
9f386b003b
Keep attributes selected when creating new items ( #2221 )
2018-11-26 13:06:25 +01:00
FrancescoUK
383a2d0520
Update composer.lock
2018-11-17 20:32:26 +00:00
jekkos
3a66646e09
Update minimum supported PHP version
2018-11-16 09:04:28 +01:00
jekkos
ceeebfcc62
Bump minimum PHP version in composer
2018-11-16 09:02:08 +01:00
jekkos
bbac4c5847
Set migrated attribute visiblity to items only ( #2224 )
2018-11-15 23:31:36 +01:00
jekkos
e8aa12a296
Add default attribute visiblity ( #2224 )
2018-11-15 23:23:20 +01:00
jekkos
c93b057ba1
Fix items column sorting order ( #2224 )
2018-11-15 22:08:54 +01:00
jekkos
2e67007c69
Fix attributes submit error ( #2201 )
2018-11-15 21:54:35 +01:00
jekkos
465a2c29d5
Fix temporal dependency in migration
2018-11-05 19:30:12 +01:00
jekkos
db6963a8a6
Fix blank screen after update ( #2201 )
2018-11-03 23:24:19 +01:00
jekkos
afbb06eaad
Fix issue with PHP7.2 ( #2190 )
2018-11-03 20:19:19 +01:00
Steve Ireland
145e0b7783
Merge pull request #2215 from opensourcepos/chinese-lang
...
Split Chinese language options into Simplified and Traditional
2018-10-31 11:25:54 -04:00
Steve Ireland
42a69e7e9d
Split Chinese language options into Simplified and Traditional
2018-10-30 20:50:01 -04:00
Khaled Saad
aa58bfdb76
Translated using Weblate (Arabic)
...
Currently translated at 100.0% (33 of 33 strings)
2018-10-24 08:31:39 +02:00
Khaled Saad
2810d930b0
Translated using Weblate (Arabic)
...
Currently translated at 100.0% (162 of 162 strings)
2018-10-24 08:29:07 +02:00
Khaled Saad
8dbed47a87
Translated using Weblate (Arabic)
...
Currently translated at 100.0% (272 of 272 strings)
2018-10-24 08:22:24 +02:00
WIbi
9b6276411f
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (19 of 19 strings)
Translation: opensourcepos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/id/
2018-10-23 08:39:51 +02:00
WIbi
7aa50530c0
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (43 of 43 strings)
Translation: opensourcepos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/id/
2018-10-23 08:39:51 +02:00
WIbi
d99aba0bcc
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (20 of 20 strings)
2018-10-23 08:39:51 +02:00
WIbi
dfd32d1b0e
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (162 of 162 strings)
2018-10-23 08:39:51 +02:00
WIbi
1138bbf40e
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (110 of 110 strings)
2018-10-23 08:39:51 +02:00
WIbi
bf658af8d0
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (52 of 52 strings)
2018-10-23 08:39:11 +02:00
WIbi
d4f449697f
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (37 of 37 strings)
Translation: opensourcepos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/id/
2018-10-23 08:39:11 +02:00
WIbi
04346da7ef
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (30 of 30 strings)
2018-10-23 08:39:11 +02:00
WIbi
64c2596979
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (68 of 68 strings)
2018-10-23 08:38:42 +02:00
WIbi
33502e4613
Translated using Weblate (Indonesian)
...
Currently translated at 99.6% (270 of 271 strings)
2018-10-23 08:38:42 +02:00
WIbi
d02cd24ebf
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (65 of 65 strings)
2018-10-23 08:38:42 +02:00
WIbi
440cacade1
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (7 of 7 strings)
Translation: opensourcepos/enum
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/enum/id/
2018-10-23 08:38:42 +02:00
WIbi
6e84469aa2
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (110 of 110 strings)
2018-10-23 08:38:42 +02:00
WIbi
2eca946504
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (30 of 30 strings)
2018-10-23 08:38:42 +02:00
WIbi
a8d6ee6b43
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (162 of 162 strings)
2018-10-23 08:38:42 +02:00
WIbi
e0dafb7ab8
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (52 of 52 strings)
2018-10-23 08:38:42 +02:00
Zhivko Vanev
5d2f49e950
Translated using Weblate (Bulgarian)
...
Currently translated at 100.0% (35 of 35 strings)
2018-10-23 08:38:42 +02:00
Eugen Sclavone
76684f69f5
Translated using Weblate (Romanian)
...
Currently translated at 23.6% (64 of 271 strings)
2018-10-23 08:38:42 +02:00
WIbi
9d1d57d42b
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (37 of 37 strings)
Translation: opensourcepos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/id/
2018-10-23 08:37:15 +02:00
FrancescoUK
e9c192f70b
Merge branch 'emi-silva-linked-expenses-supplier'
...
# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
2018-10-21 17:22:27 +01:00
FrancescoUK
12ca6125fb
Minor fixes
2018-10-21 17:21:05 +01:00
Emilio Silva Schlenker
f96f5efe48
Ternary operator instead of if clause to keep consistency
2018-10-21 16:51:34 +01:00
Emilio Silva Schlenker
5650a26381
Corrected indentation, chained some frontend calls
2018-10-21 16:51:34 +01:00
Emilio Silva Schlenker
2122866b50
Supplier field optional, SQL script, removed extra tab
2018-10-21 16:51:34 +01:00
Emilio Silva Schlenker
18db2e5c82
linked expenses with suppliers
2018-10-21 16:51:34 +01:00
Steve Ireland
1627a26bf6
Remove license folder and .license file
2018-10-17 21:44:16 -04:00
FrancescoUK
21ed53aa6d
Minor fixes ( #68 )
2018-10-15 21:11:28 +01:00
jekkos
612d23fa63
Fix attribute selection for update ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
3c6f7dd9c1
Fix item update query ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
504f9cf853
Align items + sales and receivings reports ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
fd00a74225
Refactor + fix detailed reports ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
9c5ec71c19
Show line in detailed reports if no attribute value ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
a7bc09312d
Update migration script ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
9c863e7795
Fix undefined offset error in devmode ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
abc067a10b
Fix development mode warning ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
6fc2072967
Fix attribute search ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
9570cb8b28
Fix offset warning ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
8e58d57ab3
Fix line count in detailed sales/receivings reports ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
7683cfe5c9
Fix dropdown preselection on edit ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
43e3400468
Fix item row refresh ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
74f31dbaf9
Keep unsaved attributes when adding multiple ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
b9cba20d84
Fix items row refresh ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
9cdfc0ce8a
Fix css overflow + form refresh
2018-10-15 19:32:29 +02:00
jekkos
667c4e2afe
Fix values when using multiple attribute columns ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
e2147d8b00
Update language files ( #68 )
2018-10-15 19:32:29 +02:00
FrancescoUK
a7bad34fce
Fix language files
2018-10-15 19:32:29 +02:00
jekkos
093b2d96af
Correct language files ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
fc01e35a43
Add collation to tables
2018-10-15 19:32:29 +02:00
jekkos
9e7543a41a
Fix attribute values in items ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
3c21b8ff5a
Minor db script review remarks
2018-10-15 19:32:29 +02:00
jekkos
2fc353cd14
Don't show GROUP attribute as column ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
9d0da3e6b8
Fix detailed receivings/sales report issues ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
83dc1de6d6
Don't create attributes if custom fields were empty ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
1ed56e388b
Rename migration script ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
5d088f0283
Revert tables.sql to original 3.0 ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
77682973a0
Enable attributes in items table ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
288b4029d7
Add attributes to detailed sales/receiving reports ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
0fc702627e
Fix detailed reports ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
b2da8f5e9d
Fix attribute delete ( #68 )
2018-10-15 19:32:29 +02:00
FrancescoUK
f86eaa78a2
Update form.php
2018-10-15 19:32:29 +02:00
FrancescoUK
6bbf927d81
Update Attribute.php
2018-10-15 19:32:29 +02:00
FrancescoUK
be3d0fe8e1
Update item.php
2018-10-15 19:32:29 +02:00
FrancescoUK
042c81a6b4
Update form.php
2018-10-15 19:32:29 +02:00
FrancescoUK
75097e9485
Update Item.php
2018-10-15 19:32:29 +02:00
FrancescoUK
27122a8578
Update form.php
2018-10-15 19:32:29 +02:00
FrancescoUK
3c876d7f6f
Update Items.php
2018-10-15 19:32:29 +02:00
FrancescoUK
c61d32bc58
Update Item_kit.php
2018-10-15 19:32:29 +02:00
FrancescoUK
03aaec04b9
Update module_lang.php
2018-10-15 19:32:29 +02:00
FrancescoUK
744854726c
Update module_lang.php
2018-10-15 19:32:29 +02:00
jekkos
a0727a8ea5
Fix bug in sales receipt ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
3be57ffb66
Fix config screen ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
085d24447c
Disablel SHOW_IN_ITEMS ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
8b212a8dd0
Fix some final bugs ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
1a490cedf5
Add support for DATETIME in attributes ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
98022f3b96
Cleanup + enable item attribute delete ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
1e0063e574
Fix attribute table refresh ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
a8d73d5f99
Add attributes to items ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
500a8d7a8f
Work in progress, still testing items form ( #68 )
2018-10-15 19:32:29 +02:00
jekkos
df61ee09bb
Add item attributes functionality ( #68 )
2018-10-15 19:32:29 +02:00
FrancescoUK
f521257570
Fix Items search category issue ( #2179 )
2018-10-13 17:23:28 +01:00
jekkos
ddcece66d6
Fix bstables sorting ( #2159 )
2018-10-13 14:12:01 +02:00
Zhivko Vanev
a268c0a48d
Translated using Weblate (Bulgarian)
...
Currently translated at 100.0% (2 of 2 strings)
2018-10-11 09:00:49 +02:00
Zhivko Vanev
77f9251447
Translated using Weblate (Bulgarian)
...
Currently translated at 100.0% (162 of 162 strings)
2018-10-11 09:00:49 +02:00
Zhivko Vanev
e8f85ef27f
Translated using Weblate (Bulgarian)
...
Currently translated at 100.0% (51 of 51 strings)
2018-10-11 09:00:49 +02:00
FrancescoUK
6342f5e4b8
Fix chartist broken dependency, upgrade composer dependencies
2018-10-07 16:43:41 +01:00
FrancescoUK
44712e7efe
Add recent code contributors to LICENSE files
2018-10-07 16:01:06 +01:00
FrancescoUK
c855bc00d7
Merge Supplier Category ( #2088 )
2018-10-07 15:46:36 +01:00
FrancescoUK
006ee22435
Add Supplier Category ( #2088 )
2018-10-07 15:45:20 +01:00
FrancescoUK
deed04cd46
Alter cashup db table ( #440 #2131 )
2018-10-03 21:10:20 +01:00
FrancescoUK
bc34293cac
Add due payment to cashup ( #440 #2131 )
2018-09-30 15:17:31 +01:00
Zhivko Vanev
cc47df6ee6
Translated using Weblate (Bulgarian)
...
Currently translated at 100.0% (30 of 30 strings)
Translation: opensourcepos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/bg/
2018-09-30 09:43:01 +02:00
Zhivko Vanev
1b8d7a6de5
Translated using Weblate (Bulgarian)
...
Currently translated at 100.0% (17 of 17 strings)
2018-09-30 08:24:16 +02:00
Xyko Arteiro
cfa7844a42
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (272 of 272 strings)
2018-09-30 08:24:16 +02:00
Zhivko Vanev
c2f8fcb0c4
Translated using Weblate (Bulgarian)
...
Currently translated at 100.0% (30 of 30 strings)
Translation: opensourcepos/taxes
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/taxes/bg/
2018-09-30 08:24:16 +02:00
Zhivko Vanev
ef8dc97de9
Translated using Weblate (Bulgarian)
...
Currently translated at 100.0% (17 of 17 strings)
2018-09-30 08:24:16 +02:00
Xyko Arteiro
710ab32b2f
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (272 of 272 strings)
2018-09-30 08:24:16 +02:00
Xyko Arteiro
87f63c4655
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (162 of 162 strings)
2018-09-30 08:24:16 +02:00
Xyko Arteiro
adc72571ba
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (114 of 114 strings)
2018-09-30 08:24:16 +02:00
jekkos
c57f063dc1
Fix discount calculation
2018-09-29 16:47:28 +02:00
jekkos
511f21931c
Fix discount totals
2018-09-28 20:52:42 +02:00
jekkos
46b845ab01
Add totals to discount repor
2018-09-28 20:43:12 +02:00
jekkos
68051bdcdb
Add totals to discount report
2018-09-28 20:42:52 +02:00
Steve Ireland
6d5f518855
Fix issue with deleted items not being included in reprinted receipts.
2018-09-28 20:37:51 +02:00
Steve Ireland
3a7d8415f6
Merge pull request #2162 from RuleDomain/fix_receipt_missing_del_item
...
Fix issue with deleted items not being included in reprinted receipts.
2018-09-25 21:06:08 -04:00
Steve Ireland
68fe267fad
Fix issue with deleted items not being included in reprinted receipts.
2018-09-25 20:24:20 -04:00
Xyko Arteiro
dd83139760
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (37 of 37 strings)
Translation: opensourcepos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/pt_BR/
2018-09-23 20:45:40 +02:00
Xyko Arteiro
b561de77ab
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (108 of 108 strings)
2018-09-23 20:43:07 +02:00
Xyko Arteiro
1ffbbefca4
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (19 of 19 strings)
Translation: opensourcepos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/pt_BR/
2018-09-23 20:41:37 +02:00
Xyko Arteiro
d692553d02
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (51 of 51 strings)
2018-09-23 20:41:05 +02:00
Xyko Arteiro
b38e090fe8
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (52 of 52 strings)
2018-09-23 20:40:08 +02:00
Xyko Arteiro
6db892467c
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (33 of 33 strings)
2018-09-23 20:37:42 +02:00
Xyko Arteiro
330ec999b5
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (7 of 7 strings)
Translation: opensourcepos/enum
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/enum/pt_BR/
2018-09-23 20:26:53 +02:00
FrancescoUK
a30d2d2506
Merge pull request #2144 from opensourcepos/public_redirect
...
Correct errors in redirect with advanced install
2018-09-23 16:47:56 +01:00
jekkos
a6b5726cdc
Start migration after installation check ( #2148 )
2018-09-23 14:28:23 +02:00
jekkos
9f71427fee
Check for employee language property first ( #2148 )
2018-09-23 14:17:30 +02:00
jekkos
2cc58ad546
Fix language fallback ( #2148 )
2018-09-23 02:04:16 +02:00
Josh
c3ba10f2e5
update invoice_email.css typo ( #2146 )
...
Correcting css html color code.
2018-09-19 11:58:00 +03:00
objecttothis
0ffece7cb8
Correct errors in redirect with advanced install
...
This should cover the following scenarios
1- Install is in the root folder (www.example.com)
2- Install is in a subfolder (www.example.com/pos/)
3- Install is in an subdomain or subdomain and subfolder (pos.example.com or pos.example.com/abc)
4- User attempts to navigate to other subfolders (www.example.com/vendor).
In each case the expected behavior is to redirect to URI/public as an external redirect with no errors.
When testing PLEASE clear your browser cache/history and restart your browser. Most browsers have a bad habit of caching errors and then you don't know if you are getting a cached error or the current results.
2018-09-18 18:15:34 +04:00
jekkos
dbfe9b7e55
Migration script fixes
2018-09-16 23:50:07 +02:00
jekkos
9307ebbaa9
Revert wrong change
2018-09-16 23:50:07 +02:00
jekkos
2181b0ebce
Update second method
2018-09-16 23:50:07 +02:00
jekkos
ec5e016401
Fix tax migration script
2018-09-16 23:50:07 +02:00
Weblate
513f847f4d
Upade Czech translation
2018-09-16 15:39:30 +02:00
Weblate
d5c270b4dc
Translated using Weblate (Flemish)
...
Currently translated at 99.3% (161 of 162 strings)
2018-09-16 15:39:30 +02:00
FrancescoUK
522011b92c
Fix migration scripts ( #440 )
2018-09-09 20:14:59 +01:00
Rostislav Hučka
26ac789e57
Translated using Weblate (Czech)
...
Currently translated at 90.1% (46 of 51 strings)
2018-09-09 20:08:05 +02:00
Rostislav Hučka
3e07d2cd01
Translated using Weblate (Czech)
...
Currently translated at 86.4% (140 of 162 strings)
2018-09-09 20:08:05 +02:00
Rostislav Hučka
922143aacf
Translated using Weblate (Czech)
...
Currently translated at 91.8% (101 of 110 strings)
2018-09-09 20:08:05 +02:00
FrancescoUK
d8cb0dfc9b
Add cashup feature ( #440 )
...
Add cashup feature
2018-09-09 12:48:11 +01:00
FrancescoUK
b3bfc51ee8
Add cashup feature
2018-09-09 11:09:43 +01:00
FrancescoUK
4420dccc60
Add (commented out) phpmyadmin to docker-compose
2018-09-09 10:18:44 +01:00
FrancescoUK
c7b32a5a0e
Minor fixes
2018-09-08 15:48:21 +01:00
FrancescoUK
493eb5051c
Merge pull request #2127 from erastus/master
...
fixed in specific_customer change discount_fixed for discount_type
2018-09-08 06:43:45 +01:00
Erastus
82a228fa99
fixed in specific_customer change discount_fixed for discount_type
2018-09-07 16:35:52 -05:00
Weblate
f80d42e211
Translated using Weblate (Flemish)
...
Currently translated at 99.3% (161 of 162 strings)
2018-09-07 20:22:53 +02:00
Weblate
e52634bd06
Update German + Flemish
2018-09-07 19:51:16 +02:00
Aril Apria Susanto
0bcee8eff2
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (17 of 17 strings)
2018-09-07 19:51:16 +02:00
Weblate
801c8e284d
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (17 of 17 strings)
2018-09-07 19:51:16 +02:00
Aril Apria Susanto
96bd405e4f
Translated using Weblate (Indonesian)
...
Currently translated at 94.5% (104 of 110 strings)
2018-09-07 19:51:16 +02:00
Weblate
745a20d2f3
Translated using Weblate (Flemish)
...
Currently translated at 99.0% (109 of 110 strings)
2018-09-07 19:51:16 +02:00
Weblate
be33a6e14b
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (51 of 51 strings)
2018-09-07 19:51:16 +02:00
Aril Apria Susanto
c25279db8c
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (35 of 35 strings)
Translation: opensourcepos/module
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/module/id/
2018-09-07 19:51:16 +02:00
Aril Apria Susanto
bbbf706941
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (104 of 104 strings)
2018-09-07 19:51:16 +02:00
Aril Apria Susanto
c29da31752
Translated using Weblate (Indonesian)
...
Currently translated at 96.6% (29 of 30 strings)
2018-09-07 19:51:16 +02:00
Aril Apria Susanto
70aef10e14
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (68 of 68 strings)
2018-09-07 19:51:16 +02:00
Weblate
c9411a1430
Translated using Weblate (Flemish)
...
Currently translated at 94.4% (17 of 18 strings)
Translation: opensourcepos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/nl_BE/
2018-09-07 19:51:16 +02:00
Songwut Kanchanakosai
51cfae280f
Translated using Weblate (Thai)
...
Currently translated at 51.1% (22 of 43 strings)
Translation: opensourcepos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/th/
2018-09-07 19:51:16 +02:00
Aril Apria Susanto
8bf1cc1775
Translated using Weblate (Indonesian)
...
Currently translated at 95.3% (41 of 43 strings)
Translation: opensourcepos/expenses
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses/id/
2018-09-07 19:51:16 +02:00
Songwut Kanchanakosai
02890a528f
Translated using Weblate (Thai)
...
Currently translated at 71.4% (5 of 7 strings)
Translation: opensourcepos/enum
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/enum/th/
2018-09-07 19:51:16 +02:00
Xyko Arteiro
c3063b32fe
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 85.7% (6 of 7 strings)
Translation: opensourcepos/enum
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/enum/pt_BR/
2018-09-07 19:51:16 +02:00
Aril Apria Susanto
dfb33b09ee
Translated using Weblate (Indonesian)
...
Currently translated at 57.1% (4 of 7 strings)
Translation: opensourcepos/enum
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/enum/id/
2018-09-07 19:51:16 +02:00
Aril Apria Susanto
849bba59bd
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (35 of 35 strings)
2018-09-07 19:51:16 +02:00
Weblate
f18be62946
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (35 of 35 strings)
2018-09-07 19:51:16 +02:00
Aril Apria Susanto
dfd5913583
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (48 of 48 strings)
2018-09-07 19:51:16 +02:00
Emanuel Ioan Cretu
85b6185fda
Translated using Weblate (Romanian)
...
Currently translated at 13.2% (36 of 271 strings)
2018-09-07 19:51:16 +02:00
Aril Apria Susanto
11564228bf
Translated using Weblate (Indonesian)
...
Currently translated at 97.7% (265 of 271 strings)
2018-09-07 19:51:16 +02:00
Weblate
a0eb54ef14
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (271 of 271 strings)
2018-09-07 19:51:16 +02:00
Weblate
d4368333e3
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (51 of 51 strings)
2018-09-07 19:51:16 +02:00
Weblate
1d4c69394c
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (271 of 271 strings)
2018-09-07 19:51:16 +02:00
Weblate
2c55c22d4a
Translated using Weblate (Flemish)
...
Currently translated at 100.0% (17 of 17 strings)
2018-09-07 19:51:16 +02:00
jekkos
2605dff9b7
Fix colspan in receivings
2018-09-07 00:38:11 +02:00
FrancescoUK
6d03c1a1fb
Merge pull request #2126 from opensourcepos/fix-employee-name
...
Fix employee name on receipt/invoice (#2108 )
2018-09-06 14:04:33 +01:00
jekkos
f19147b201
Fix employee name on receipt/invoice ( #2108 )
2018-09-06 14:23:16 +02:00
jekkos
d81ff11483
Remove docker-cloud + stop pushing sqlscript ( #2120 , #1939 )
2018-09-06 09:37:09 +02:00
jekkos
9ca63e1b55
Add credits
2018-09-05 21:10:12 +02:00
Weblate
2c1035cba4
Update thai translations
2018-09-05 08:49:17 +02:00
Emanuel Ioan Cretu
68c9173353
Added translation using Weblate (Romanian)
2018-09-05 08:49:17 +02:00
Emanuel Ioan Cretu
055c0df2a0
Translated using Weblate (Romanian)
...
Currently translated at 100.0% (65 of 65 strings)
2018-09-05 08:49:17 +02:00
Emanuel Ioan Cretu
6aff17a212
Added translation using Weblate (Romanian)
2018-09-05 08:49:17 +02:00
Emanuel Ioan Cretu
d40bc6cc4d
Translated using Weblate (Romanian)
...
Currently translated at 100.0% (8 of 8 strings)
Romanian people know what means Refresh,
2018-09-05 08:49:17 +02:00
Emanuel Ioan Cretu
e7b89e1d9a
Translated using Weblate (Romanian)
...
Currently translated at 75.0% (6 of 8 strings)
2018-09-05 08:49:17 +02:00
Weblate
091cf1d9d8
Added translation using Weblate (Romanian)
2018-09-05 08:49:17 +02:00
Aril Apria Susanto
a46cc5d8ae
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (17 of 17 strings)
2018-09-05 08:49:17 +02:00
Aril Apria Susanto
33371a071e
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (104 of 104 strings)
2018-09-05 08:49:17 +02:00
Aril Apria Susanto
df43f14093
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (35 of 35 strings)
2018-09-05 08:49:17 +02:00
Aril Apria Susanto
ae801455f2
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (18 of 18 strings)
Translation: opensourcepos/expenses_categories
Translate-URL: http://weblate.jpeelaer.net/projects/ospos/expenses_categories/id/
2018-09-05 08:49:17 +02:00
Aril Apria Susanto
a267fb20b0
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (68 of 68 strings)
2018-09-05 08:49:17 +02:00
Aril Apria Susanto
b46e69efe9
Translated using Weblate (Indonesian)
...
Currently translated at 100.0% (48 of 48 strings)
2018-09-05 08:49:17 +02:00
Xyko Arteiro
f9928acd42
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (104 of 104 strings)
2018-09-05 08:49:17 +02:00
Xyko Arteiro
b2cc7ae0d7
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (271 of 271 strings)
2018-09-05 08:49:17 +02:00
Xyko Arteiro
745ae8eaaa
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (110 of 110 strings)
2018-09-05 08:49:17 +02:00
Xyko Arteiro
6b40ae25f8
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (48 of 48 strings)
2018-09-05 08:49:17 +02:00
Khalid
b893d23915
Translated using Weblate (Arabic)
...
Currently translated at 100.0% (104 of 104 strings)
2018-09-05 08:49:17 +02:00
SOTOS
346dcac65b
Added translation using Weblate (Greek)
2018-09-05 08:49:17 +02:00
SOTOS
64079fbd90
Added translation using Weblate (Greek)
2018-09-05 08:49:17 +02:00
Trần Ngọc Quân
61954733d7
Translated using Weblate (Vietnamese)
...
Currently translated at 100.0% (104 of 104 strings)
2018-09-05 08:49:17 +02:00
Songwut Kanchanakosai
1bb46fa905
Translated using Weblate (Thai)
...
Currently translated at 100.0% (65 of 65 strings)
2018-09-05 08:49:17 +02:00
FrancescoUK
4d11a55091
Amend database upgrade script ( #2061 )
2018-09-04 22:17:43 +01:00
FrancescoUK
35c57e6cf2
Add en-GB translations
2018-09-03 21:57:36 +01:00
FrancescoUK
f9f8f0cb50
Merge pull request #2091 from erastus/master
...
Discount on Sales
2018-09-03 21:48:14 +01:00
FrancescoUK
561f6eb784
Update README.md
2018-09-03 19:28:06 +01:00
Erastus
858f7614f9
merge branch
2018-09-03 01:10:28 -05:00
Erastus
c57d8ef536
discount in item_kits
2018-09-03 00:51:34 -05:00
Erastus
3b659526f3
cleaning spaces
2018-09-02 17:58:41 -05:00
FrancescoUK
7e85586313
Fix Receivings colspan when cart is empty
2018-09-01 16:24:28 +01:00
jekkos
a1ae343139
Add download badge to README.md
2018-09-01 11:16:16 +02:00
jekkos
da114ae988
Add item_number to receivings view
2018-09-01 09:42:46 +02:00
Erastus
53efbdb3b7
reports discount fixed
2018-08-31 23:05:32 -05:00
jekkos
024565d67c
Enable array filtering ( #2030 )
2018-09-01 01:23:07 +02:00
jekkos
0248a50ae3
Filter out duplicate results ( #2038 )
2018-09-01 01:23:07 +02:00
Erastus
eb6a7b08fa
default_sales_discount_fixed deleted
2018-08-31 16:01:34 -05:00
Erastus
a6b11e6f48
new discount on sales
2018-08-31 15:27:44 -05:00
FrancescoUK
26e33dddec
Check FORCE_HTTPS env to be true, upgrade MariaDB vs in docker-compose
2018-08-25 16:03:07 +01:00
Erastus
a5f0c83e87
update Tax_lib
2018-08-21 10:57:50 -05:00
Erastus
3b9f52de18
update LICENSE
2018-08-21 01:09:57 -05:00
Erastus
8b29fc7fea
reports graphical discount
2018-08-20 23:42:47 -05:00
erastus
325ce79bed
Change to 3.3.0
2018-08-20 15:03:09 -05:00
Erastus
85bbbe835c
Discount on Sales
2018-08-20 13:41:56 -05:00
FrancescoUK
04b9a181dc
No password change in testing mode ( #2073 )
2018-08-18 13:17:42 +01:00
FrancescoUK
9c3c7a9c77
Update Employee.php
2018-08-18 12:35:29 +01:00
jekkos
f20ba23640
No password change in testing mode ( #2073 )
2018-08-17 23:54:47 +02:00
Emilio Silva Schlenker
909cd52d56
added 'due' as a payment option for receivings
2018-08-17 11:09:14 +02:00
jekkos
76c63f6a60
Remove broken gemnasium dependencies badge
2018-07-21 18:50:41 +02:00
Steve Ireland
cabb0b7964
Merge pull request #2049 from RuleDomain/fix-count-function-error
...
Fix Count Function Error
2018-07-14 12:32:47 -04:00
Steve Ireland
497c9e4617
Add support for India GST
2018-07-14 11:20:54 -04:00
WShells
674f142eac
Items Display in Inv Summary Report
...
Item names weren't showing in the inventory summary report due to variable issue...
2018-07-14 12:42:00 +03:00
FrancescoUK
8e6b33b228
Add support for multi-pack items ( #1919 )
2018-07-14 09:33:08 +01:00
FrancescoUK
baebd237e5
Fix review feedback
2018-07-14 09:29:10 +01:00
FrancescoUK
1486a41363
Fix review issues
2018-07-14 09:26:47 +01:00
FrancescoUK
463a56b1c4
Fix item_kits form issue
2018-07-08 18:02:19 +01:00
jekkos
a4e135eb92
Add support for multi-pack items.
2018-07-05 19:05:54 -04:00
FrancescoUK
1026ebb0eb
Fix indentation issue
2018-07-05 18:09:42 +02:00
jekkos
d8f086a840
Fix double submit issue ( #2020 )
2018-07-05 18:09:42 +02:00
FrancescoUK
732e1a028b
Fix indentation issue
2018-07-05 18:09:42 +02:00
jekkos
8f172e172b
Fix double submit issue
2018-07-05 18:09:42 +02:00
FrancescoUK
683ef75162
Code refactoring
2018-07-05 18:09:42 +02:00
FrancescoUK
957dc5de16
Fix exception with PHP 7
2018-07-05 18:09:42 +02:00
FrancescoUK
086c2de441
Remove csrf_form_base() from register
2018-07-05 18:09:42 +02:00
FrancescoUK
e6e7fb2e2a
Remove translation duplication
2018-07-05 18:09:42 +02:00
jekkos
bc0077012d
Use backend for amount validation ( #2020 , #2018 )
2018-07-05 18:09:42 +02:00
FrancescoUK
43bea53b56
Merge pull request #2039 from RuleDomain/item-kit-fix
...
Fix issue with item kits not being listed.
2018-07-01 11:09:33 +01:00
Steve Ireland
72245c8631
Fix issue with item kits not being listed.
2018-06-30 09:46:36 -04:00
WShells
500f14d002
Update INSTALL.md
...
Resetting Demo...
2018-06-24 04:18:18 +03:00
jekkos
b2aaae9f38
Update cloud install instructions
2018-06-17 14:27:35 +02:00
jekkos
b52174216e
Update LICENSE
2018-06-14 00:27:26 +02:00
FrancescoUK
a34f152153
Revert "Fix Item form issue ( #2021 )"
2018-06-13 22:30:37 +01:00
jekkos
abd23e5cb4
Refresh language files
2018-06-13 22:11:53 +01:00
Steve Ireland
3f12d57f82
Fix item select issue introduced with temp item feature
2018-06-13 22:11:53 +01:00
Steve Ireland
f49c896e4f
Restore ctype_digit
2018-06-13 22:11:53 +01:00
FrancescoUK
019fc7a3d5
Remove generated database sql files
2018-06-13 22:11:00 +01:00
Steve Ireland
5ef8a88000
Add support for temporary items.
2018-06-13 22:11:00 +01:00
FrancescoUK
c6b5ff1934
Restore CSRF change with & issue fix ( #1990 , #2009 )
2018-06-13 22:11:00 +01:00
FrancescoUK
ebdc1880d9
Bump version to 3.3.0 for next phase
2018-06-13 22:11:00 +01:00
FrancescoUK
f1cf3d3c87
Release 3.2.3
2018-06-13 21:37:15 +01:00
FrancescoUK
8138db1a80
Fix Item form issue ( #2021 )
2018-06-13 21:19:55 +01:00
WebShells
9dee282b83
Fixed site_url
2018-04-30 00:41:28 +03:00
WebShells
1a6a8841f4
Skip receipt windows
...
Skip receipt windows and redirect to sales if print after sale is selected.
2018-04-29 18:06:11 +03:00