When I use a Invoice and put it in Paid Status, I can’t see the Cash Flow Graphics. What can I do
]]>Hello, I just downloaded and installed and it looks really great to use. However when printing an invoice I keep getting a 404 error. What must I do differently?
]]>Dear support,
any function or suggested method to bulk upload invoice?
Thank you in advance
Hello, how are you?. Great plugin!. I need to know if your plugin can do this. Different administrators can upload their loans database, and each time a partial payment of a loan is paid, it is rest from the total?. Can be tracked with your plugin?
Thanks…
]]>Hello I’m testing the plugin on a woocommerce site in catalog mode (my client doesn’t want to operate it through woo at the moment, but in the future he will. I’m not able to get the Brazilian Real currency right, which is R$1,00 for one Real. How should I proceed with the configuration, because when I enter 1,00 it becomes 1.0000000 in the product prices and in the report.
]]>Hello,
I own multiple business and am curious about the possibility of running multiple instances on the same domain.
Thank you
]]>Hi,
The plugin is so awesome and I wanted to maximize the utilization, just a question, is there a feature on limiting the access of users to specific account?
]]>I’ve a strange problem :
I use the € currency with a Currency rate of 1 and Precision 2. I’ve switched the . with , in the settings.
Inserting a transaction of 8,5€ (8€ and 50 cents), in the Overview page and in the Transactions list it show me an amount of €8.500.000,00
Is it a bug or I miss a settings?
I thank you in advance, please, help me to use correctly your plugin.
]]>This plugin looks interesting and am wondering if you are able to set a customer subscription payment request so a customer automatically pays their subscription automatically?
]]>When I click on Reports my sales/revenues are not showing up no matter what filters I use.
]]>I am trying to import revenues. I am using the sample.csv. All fields are filled out except Currency Rate since do not need. When I try to import it says skipped. How can I find out what is causing the skipped?
All customers have already been imported. The fields match when doing map to field. The account name is the same as the existing account name. The category is the exact same name as the existing category name. The Payment Method is exactly the same as the existing Payment .
Is the REST API available now OR is there documentation on how to use with WP REST API?
]]>In looking to quickly add new expenses without returning to list view, I added a button to the edit-payment screen and modified class-ajax to handle the addnew value in edit_payment function. This could obviously be added to all entry screens, possibly cleaner, but the presence of a second submit button cannot be distinguished in the $_REQUEST variables.
edit-payment.php: add field
eaccounting_hidden_input(
array(
'name' => 'addnew'
)
);
edit-payment.php: after submit button
<button type="button" name="submitnew" id="submitnew" class="button button-secondary">Save and Add Another</button>
edit-payment.php: in eaccounting_enqueue_js
jQuery('#ea-payment-form #submitnew').click(function(){
jQuery('#ea-payment-form #addnew').val(true);
jQuery('#ea-payment-form').submit();
});
class-ajax.php: edit_payment() at line 874
$addnew = empty( $posted['addnew'] ) ? false : true;
$redirect = '';
if ( ! $update ) {
$message = __( 'Payment created successfully!', 'wp-ever-accounting' );
if ($addnew){
$redirect = eaccounting_clean( $referer );
}else{
$redirect = remove_query_arg( array( 'action' ), eaccounting_clean( $referer ) );
}
}
]]>
Hi.
in file class-importer.php, the line 131:
if ( isset( $_FILES['upload']['tmp_name'] ) && ! file_exists( wp_unslash( $_FILES['upload']['tmp_name'] ) ) ) {
causes the file upload to stop with an error.
The problem is the wp_unslash() function which causes all slashes to be deleted from the file path. Therefore it always fails.
Would you pls fix it?
There is also lots of PHP warning on PHP 8.0+.
Best regards.
]]>Hi. Your plugin is great. It’s exactly what I need.
I’d to be able to set revenues and expenses as recurring (monthly, yearly etc.), which would then affect the reports. I’d pay for this feature.
Thanks.
]]>How can I limit the ability to edit and delete data based on different roles?
thanks for awesome plugin
]]>Hi,
Is there a way to display the “Overview” values on a front-end page? Not necessarily charts or graphs but sure “Totals”.
Thx
hello
I try to add some more vendor its add but only can’t chose from the list its limited to 20 number
how I can increase , thank you
]]>This plugin look nice but has many issues like “no account id received”, if another currency is set as default, a lot of decimals are assigned to it etc. For exemple, I set the currency RON as default (ofcourse I set 1 for default currency) and when I created an invoice, I saw so many decimals…
I’m beginning to regret that I wasted my time translating this plugin in Romanian language.
]]>Hi!
I’ve been using the WP Ever Accounting plugin for a few days and I’m really enjoying it, as it perfectly meets my needs, in addition to being very simple to use!
But I’m facing some problems and would like your help to solve.
Problem 1: When adding any sales or expense records, I get an error message: “No account ID received”. Please see the screenshot: https://prnt.sc/ieq2L87m4Ngp
Problem 2: When looking for any supplier or customer in sales or expenses, it keeps searching and lists only the first 20 registered, and it is not possible to insert them since they are not listed. Please see the screenshot: https://prnt.sc/PIDVVKgRBiTI
Can you help me?
]]>I’m not able to add any records of sale or expenses. Every time I select the account from the dropdown. I get this error message: “no account id received”
I have been using this plugin regularly for the last 2 years. We encountered this issue about 2 weeks ago. And I thought it was a plugin conflict. But I have tested this without any other plugin active, and it still remains an issue. Please could you help.
]]>Hello,
I am unable to mark bills as received, paid or cancelled. Doing so will show a white page with a message that says “no cheating!”
Please help me.
]]>I would like for the cv export to have the attachment name also downloaded when exporting.
]]>Does this plugin allow to upload Vendor Receipts as an attachment?
We do many one one purchases and would like to log the receipts for quick reviews.
When entering “,” as decimal separator and “.” for thousands, and after that entering a balance for a financial account, the systems makes something totally different of it.
A solution would be to not do this yourself, but let php help you. An example (simplified version from my plugin):
function zero_decimal_currencies() {
# returns an array of currencies that don't have decimals
$currency_array = array (
'BIF',
'CLP',
'DJF',
'GNF',
'JPY',
'KMF',
'KRW',
'MGA',
'PYG',
'RWF',
'VND',
'VUV',
'XAF',
'XOF',
'XPF'
);
return $currency_array;
}
$locale = determine_locale();
if (class_exists('NumberFormatter'))
$localize_price=1;
else
$localize_price=0;
if ($localize_price)
$formatter = new NumberFormatter( $locale."@currency=$cur", NumberFormatter::CURRENCY );
$eme_zero_decimal_currencies_arr=zero_decimal_currencies();
if (in_array($cur,$eme_zero_decimal_currencies_arr))
$decimals = 0;
else
$decimals=2; // make this an option
if ($localize_price)
$result = $formatter->formatCurrency($price, $cur);
else
$result = number_format_i18n($price,$decimals);
This way you can keep a mathematical notation and just show a localized version based on currency ($cur) and the current locale.
]]>– When activating the plugin, it doesn’t check if the tables already exist so it creates mysql errors
– lots of deprecation warnings (causing about 3000 warnings in the logfiles):
[18-Nov-2022 15:00:53 UTC] PHP Deprecated: uasort(): Returning bool from comparison function is deprecated, return an integer less than, equal to, or greater than zero in /var/www/html/wordpress/wp-content/plugins/wp-ever-accounting/includes/class-collection.php on line 434
[18-Nov-2022 15:00:53 UTC] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /var/www/html/wordpress/wp-content/plugins/wp-ever-accounting/includes/ea-file-functions.php on line 123
[18-Nov-2022 15:00:53 UTC] PHP Deprecated: Return type of EverAccounting\Abstracts\Registry::offsetExists($offset) should either be compatible with ArrayObject::offsetExists(mixed $key): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/wordpress/wp-content/plugins/wp-ever-accounting/includes/abstracts/abstract-registry.php on line 121
[18-Nov-2022 15:00:53 UTC] PHP Deprecated: Return type of EverAccounting\Abstracts\Registry::offsetGet($offset) should either be compatible with ArrayObject::offsetGet(mixed $key): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/wordpress/wp-content/plugins/wp-ever-accounting/includes/abstracts/abstract-registry.php on line 135
[18-Nov-2022 15:00:53 UTC] PHP Deprecated: Return type of EverAccounting\Abstracts\Registry::offsetSet($offset, $value) should either be compatible with ArrayObject::offsetSet(mixed $key, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/wordpress/wp-content/plugins/wp-ever-accounting/includes/abstracts/abstract-registry.php on line 149
[18-Nov-2022 15:00:53 UTC] PHP Deprecated: Return type of EverAccounting\Abstracts\Registry::offsetUnset($offset) should either be compatible with ArrayObject::offsetUnset(mixed $key): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/wordpress/wp-content/plugins/wp-ever-accounting/includes/abstracts/abstract-registry.php on line 162
[18-Nov-2022 15:00:53 UTC] PHP Deprecated: Return type of EverAccounting\DateTime::setTimezone($timezone) should either be compatible with DateTime::setTimezone(DateTimeZone $timezone): DateTime, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/wordpress/wp-content/plugins/wp-ever-accounting/includes/class-datetime.php on line 85
[18-Nov-2022 15:00:53 UTC] PHP Deprecated: Return type of EverAccounting\DateTime::getOffset() should either be compatible with DateTime::getOffset(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/wordpress/wp-content/plugins/wp-ever-accounting/includes/class-datetime.php on line 72
[18-Nov-2022 15:00:53 UTC] PHP Deprecated: Return type of EverAccounting\DateTime::getTimestamp() should either be compatible with DateTime::getTimestamp(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/wordpress/wp-content/plugins/wp-ever-accounting/includes/class-datetime.php on line 187
]]>
Hello, can you tell me how I would be able to trigger a filter of my expenses per day in the expenses section?
* I have an open doubt in the previous call. can you help me?
Thanks
]]>Hi, can you help us with the following questions:
1- We would like to use the plugin only for expense control. Therefore, it is essential that the values ??are compatible with the Brazilian real (we will only use one currency). We don’t understand very well the functionality of the conversion.
For example, when we enter the payment amounts it is ok: https://prnt.sc/OLT4pcbuDILS – but when we consult the expense table and the report many zeros appear: https://prnt.sc/ktypntvntgby – https://prnt.sc/n0uiBfTlFMfr
How to solve this?
2- How to define and visualize next year’s expenses. For example, we are in 2022, but we would like to predict the accounts payable for 2023. In the tests performed, it didn’t work: https://prnt.sc/Frcg06x_U0Cg
It is possible?
Thank you very much
]]>Please provide Rest API to integrate this plugin with other software
]]>how do i set an account as fixed for recurring monthly payment
]]>