Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quickbooks plugin major new improvements and features by timbze and marcbou #230

Open
wants to merge 47 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 42 commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
8293d31
Various improvements for the quickbooks-online plugin:
Mar 12, 2019
7a0e2ca
- Added support for percent-based invoice discounts.
Mar 12, 2019
7c8e7db
GitIgnore update for Jetbrains
timbze Nov 26, 2021
cfe1a71
Marcbou improvements [Merge]
timbze Nov 26, 2021
fac0be6
Put back QB income account number field
timbze Nov 26, 2021
d7eac76
Change delay for api limits to only run when needed and not constantly
timbze Nov 27, 2021
3e12a16
More improvements to Marcbou
timbze Nov 27, 2021
b678885
Fix bug with endless loop. Improve logging
timbze Nov 27, 2021
7d505ae
Add ucrm-plugin-sdk requirement
timbze Nov 27, 2021
53f0949
Add payment note as ref number #6
timbze Nov 27, 2021
46248d5
Update qb zip
timbze Nov 27, 2021
3ede562
Increment version 1.1.4
timbze Nov 27, 2021
63886fa
Bugfix nullable itemNameFormat
timbze Nov 29, 2021
cf931f7
Fix applying payments for invoices that only had invoice id in invoic…
timbze Nov 29, 2021
58c677c
Add option to change last exported invoice and payment id (advanced u…
timbze Nov 29, 2021
f98305d
Save payment id and note in QB
timbze Nov 29, 2021
58fee20
Restructure payments to only export as 1. Fixes #5
timbze Nov 29, 2021
5771a4a
Minor improvements to payment export
timbze Nov 29, 2021
01b6c24
Save email and phone # to QB for new clients. Fixes #3
timbze Nov 29, 2021
2a000c0
Set payment method in QB #6
timbze Nov 30, 2021
cbba8ff
Enable dynamic log level
timbze Nov 30, 2021
fce403b
Simplify dataService query and Add calls
timbze Nov 30, 2021
51af3a7
Make it possible to set up "deposit to" for payment methods #6
timbze Nov 30, 2021
5b235e7
Cache depositTo ids between payment exports #6
timbze Nov 30, 2021
6c2b4eb
Logging improvements
timbze Nov 30, 2021
2c18da5
Fix QB payment method save
timbze Nov 30, 2021
a047a14
Fix QB payment deposit to
timbze Dec 1, 2021
0894881
Version 1.1.5
timbze Dec 1, 2021
51976b7
Fix manifest descriptions
timbze Dec 1, 2021
e2f273f
Fix sleep wait
timbze Dec 1, 2021
6162016
Clean log after running QB export. Closes #7
timbze Dec 1, 2021
f02ad94
Do not check for existing invoice in QBO before exporting
timbze Dec 1, 2021
2d2c212
Add check number to memo for "Check" payment type
timbze Dec 1, 2021
73206a3
Add feature to export credit memos to QBO. Closes #8
timbze Dec 1, 2021
2e6c14e
Update README for new features and fixes
timbze Dec 1, 2021
ab4f213
Remove last exported invoiceId and paymentId config fields in plugin …
timbze Dec 1, 2021
ced07d7
Fix accounts not showing on first authorization
timbze Dec 1, 2021
8b9b3e2
Revert "Do not check for existing invoice in QBO before exporting"
timbze Dec 2, 2021
6d54f41
Check if credit exists in QBO before exporting
timbze Dec 2, 2021
1851a5c
Remove unnecessary json decode/re-encode
timbze Dec 2, 2021
f19019d
Fix payment method entry saving to Payment
timbze Dec 3, 2021
73196d1
Update version to 2.0.0
timbze Dec 1, 2021
0d9b6eb
Fix README changelog version to be consistent with manifest
timbze May 18, 2022
da55ddd
Move class variables to beginning of file
timbze May 18, 2022
4ef62ad
When getting array value return false if there is no data
timbze May 18, 2022
55d7756
Merge branch 'master' into new_features_timbze_and_marcbou
timbze May 23, 2022
3a08bdc
Update QB plugin for UISP 2.3.57, update version to 2.1.0
Dec 4, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
.php_cs.cache
vendor
.idea
composer.phar
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
},
"require": {
"ext-zip": "*",
"ext-json": "*"
"ext-json": "*",
"ubnt/ucrm-plugin-sdk": "^0.8.1"
}
}
Loading