Listed in the Pending Issues post.
In the meanwhile, export a quote and import it as a new one after modifying it or after importing it.
It's much more fun, when you can discuss your problems with others...
You are not logged in. Please login or register.
FrontAccounting forum → Posts by apmuthu
Listed in the Pending Issues post.
In the meanwhile, export a quote and import it as a new one after modifying it or after importing it.
Stands corrected:
Line 146 in reporting/rep107.php:
$result = get_customer_trans_details(ST_SALESINVOICE, $row['trans_no']);
gets the line items from the function (defined in sales/includes/db/cust_trans_details_db.inc) used above like:
SELECT line.*,
line.unit_price+line.unit_tax AS FullUnitPrice,
line.description AS StockDescription,
item.units, item.mb_flag
FROM 1_debtor_trans_details line,1_stock_master item
WHERE (
(debtor_trans_no=1) -- 1st Transaction in Demo Co
AND debtor_trans_type=10 -- ST_SALESINVOICE
AND item.stock_id=line.stock_id
)
ORDER BY id
This result having the invoice's line items are cycled through from lines 148 to 181 in reporting/rep107.php.
Lines 344 onwards in reporting/rep107.php cycle through the line items which is what you need to put into some javascripted set of tabs.
The image links can have a title attribute for their "a" tag.
It works okay in 2.4.3+.
The last significant changes to the file sales/create_recurrent_invoices.php that introduced the functions "calculate_from" and "calculate_next" were done between Apr and July 2015 and they compute correctly as per the wiki.
Attached are the screenshots of the Recurrent Sales Invoice Request Form, it's execution and the resultant Invoice generated.
Where in it do you face a problem?
@joe, @itronics: any updates?
@joe: Thanks. Commit Link.
Since it was among the construct/destruct changes it was not obvious. Thanks for the reference Joe.
The Customer Branch is set to be the charge to address. All non "cash only" direct invoices have the option to deliver from / to fields. There is a refresh issue with the direct invoice / sales order entry page is a non cash payment mode is chosen in one form and abandoned and then another is opened.
Not yet.....
@joe: isn't it due?
This was changed in FA 2.3.5 as stated in the wiki.
The commit for allowing MariaDB uses an inline array reference on explode that is not accepted in PHP 5.3.1 and needs to be fixed as in the comment in it by replacing line 27 in includes/system_tests.inc:
$test['result'] = $test['test']>='4.1' || explode('-', $test['test'])[1] == 'MariaDB';
with:
if(!($test['result'] = ($test['test']>='4.1'))) {
$db_str = explode('-', $test['test']);
$test['result'] = ($db_str[1] == 'MariaDB');
}
Clear the company/#/js_cache/*.js files and they will get re-created with the new preference settings on next login.
@itronics: make something generic wherever there is a reference that clashes with existing ones.
The demo does not seem to have it installed.
All methods are skeleton templates only.
@itronics: That was a really involved fix indeed. The second if to test for a zip can be an elseif..... in admin/backups.php and a string somewhere to indicate that the file was successfully downloaded will complete it.
@itronics: Should this not be adjusted as you had done earlier and committed?
Core functions are included first. Only extra functions come in from the themes. Overrides in the company folder override similar files in the core path. Hooks are sequentially activated and they are generally class methods. Custom themes too can partake of it's class methods to override the default ones.
Trying to upload a module is available using the pkg extension and the ar method of archiving that is similar to the .deb Debian packaging.
Allowing any other means of upload will cause security issues if not taken heed to in the program construct.
I have the translated ones for FA 2.4.3 in the FA24extensions repo. Download and overwrite your .mo file
If your OS starts the MySQL server with the right default charset and collation and it matches that of the connection made from the php scripts, all should be well. This will affect both FA 2.3 and FA 2.4 as well.
This is specific to the mysqli_query execution where the connection handle is passed.
Compare the php.ini files and the apache conf files.
Make sure that the default / current session / connection are all of the same charset.
Check on the values of the concerned MySQL variables.
Make sure you have the appropriate font in the reporting/fonts folder.
When a backup is created and an attempt is made to download the backed-up file which downloads successfully, the spinner at the top keeps spinning and there is no message to state that the download was successful.
When a backed-up file is attempted to be viewed, there is no sql file extraction on archived backups before a view is attempted. If there is no intention of doing it for some reason, then a filter should be made before an attempt to allow a view like:
if (!preg_match("/\.sql$/", $fname))
display_error(_("You can only view *.sql backup files"));
else {
..
..
in admin/backups.php file.
FrontAccounting forum → Posts by apmuthu
Powered by PunBB, supported by Informer Technologies, Inc.
Currently installed 4 official extensions. Copyright © 2003–2009 PunBB.