Skip to forum content
Tracmor Forum
The Official Tracmor Public Forum
You are not logged in. Please login or register.
Active topics Unanswered topics
Search options (Page 3 of 15)
Tracmor Forum » Posts by jsinclair
If you don't mind editing some code, you can get the functionality you want. Edit the file /assets/asset_edit.php and find the function called btnAddChild_Click() at around line 481 (if you're running 0.3.0). At the end of that function (line 507) add this line:
$this->txtAddChild->Focus();
That will return the cursor to the child asset entry field every time you enter/scan a child asset. Let us know if that works for you.
Can you confirm that you have tried setting allow_call_time_pass_reference to true in your php.ini? You will need to restart your web server after making this change.
You're right, currently the system will not prevent you from creating manufacturers or categories with the same name. We'll make sure this gets fixed in the next release.
I'd recommend simply doing a "Move" transaction on the asset to the correct location, rather than trying to change the location directly. Check your web server error log to see why you're getting a blank screen when opening the asset. Simply changing the location_id shouldn't cause that to happen, unless perhaps you entered a location_id that doesn't exist.
Yes, others have posted their success with IIS in the forums, so it should run fine.
Out of curiosity, did you try my suggestion in this post to see if it helped speed things up on Solaris?
Have you already tried changing the form state handler to store the form state in the filesystem or in session (memory)?
To do so, edit the file includes/qcodo/qform/QForm.class.php and find this line:
public static $FormStateHandler = 'QFormStateHandler';
Change it to:
// store form state in filesystem
public static $FormStateHandler = 'QFileFormStateHandler';
or
// store form state in session
public static $FormStateHandler = 'QSessionFormStateHandler';
Please let us know if that helps.
The parent-child relationship feature has been in Tracmor since 0.2.0. You can view a video tutorial demonstrating how it works here.
Are there any areas or actions that are particularly slow?
Check out my post here. Follow those 3 steps and see if that solves your problem.
Thank you for bringing this to our attention. This has been applied in r765.
Negative quantities are currently not supported in Tracmor, but we will consider adding this in the future. If you are a developer and interested in adding this feature yourself, you are welcome to share the code here.
As for the "split-ship" request, can you explain more what you're trying to do?
Unfortunately, unless we can reproduce the problem you're having, or unless you can show error logs that would help us troubleshoot your problem, there is not a lot we can do. Have you checked your web server error logs?
Support for bar code label printers (like the Brother model I mentioned above) is coming soon. Since you are a Tracmor customer, I have a ticket open for this request. I will update the ticket as soon as we can provide more information.
At this time, the stock sizes listed are the only ones supported. If you tell us the stock size you have, we can look into adding support for it.
We are also working on adding support for bar code label printers like the Brother PT-9700.
Ok, I have tried to reproduce the problem you're having, but am unable to. Could you try reproducing your problem on our demo site at http://demo.tracmor.com and then post the steps here?
One thing to check is that the lock icon is actually displayed next to the child assets that are locked. If it is not there, that child is not locked to the parent. I mention this because in my testing I found that the errors that should display when you unsuccessfully attempt to lock a child to a parent are currently not working. We are looking into that and should have a fix committed soon.
UPDATE: I just checked in a fix to properly display the warnings. See r756 for the code change if you want to manually apply it to your installation.
I have not experienced this issue before, but I'll look into it and see if I can reproduce it.
This is not yet possible without a lot of manual code editing, but we are in the process of updating Tracmor to allow for such editing. We don't have an ETA to share yet, but it is definitely on the way.
Would you mind testing our demo site on your devices? The code our demo site is running (the latest from our subversion repo) includes a more recent version of the Qcodo framework, and it may have addressed the issues you are having. Please post back with your results here.
Are you running your Tracmor on a port other than 80? There is currently a limitation with label generation where it expects you are running on port 80. If you're using another port, you could update line 351 of tracmor/admin/labels.php to use the correct port. For example, if you're running on port 88, you would change this:
$image = ImageCreateFromPNG(sprintf("http://%s/includes/php/barcode.php?code=%s&encoding=128&scale=1", $_SERVER['SERVER_NAME'] . __SUBDIRECTORY__, urlencode($this->strBarCodeArray[$this->intCurrentBarCodeLabel++])));
to this:
$image = ImageCreateFromPNG(sprintf("http://%s/includes/php/barcode.php?code=%s&encoding=128&scale=1", $_SERVER['SERVER_NAME'] . ':88' . __SUBDIRECTORY__, urlencode($this->strBarCodeArray[$this->intCurrentBarCodeLabel++])));
Global search is on our "wish list", but is not a feature that we have planned for the near future due to our limited resources. The best we could do is refer you to one of our developer partners who offer custom coding services, if you'd be interested in paid development.
Wow, I guess I should have updated this thread sooner! 
We actually ended up having some other feature requests push mass update down the priority list, but we haven't forgotten about it. We have a new release targeted for this summer, and mass update will be included in that release, along with some other cool stuff.
It appears that the version of TCPDF we are currently using in Tracmor is rather outdated now. We have not updated Tracmor with the latest version yet, but you can do this yourself by following these steps:
1) Download the latest TCPDF here.
2) Unzip the download and copy tcpdf.php and unicode_data.php to your tracmor/includes/php/tcpdf directory.
This should allow you to print labels again. This issue will be fixed in the next Tracmor release.
Just wanted to give an update on this request. Requirements have been published here and this change will be part of our next release.
Thanks for the suggestion. Until we are able to add such a feature, don't forget that you can attach images (or any type of file) to assets. We have a video tutorial on using attachments here.
Posts found [ 51 to 75 of 351 ]
Tracmor Forum » Posts by jsinclair
Powered by PunBB, supported by Informer Technologies, Inc.
Currently used extensions: pun_repository, pun_antispam, pun_bbcode, pun_pm. Copyright © 2008 PunBB