Awesome! Will you be posting the results at some point? Can't wait to see what you all come up with!

2

(2 replies, posted in Questions & Answers)

Agreed!!  It seems far too short - furthermore, would be great if when navigating to the main index/login page that it would remember that if you are already logged in and redirect accordingly instead of always asking for you to login.

Nobody else feel this being beneficial??

4

(0 replies, posted in Feature Requests)

Maybe this should be built into the stock default fields instead of it having to be a custom field, but with every asset we have a purchase date, or acquired date.  Currently, we have to create that as a dumb text field, allowing anyone to put the date in any format they choose.  Would be very beneficial to have either a "Purchased/Acquired Date" as part of the default Asset form, or the ability to create a custom field type as Date that would have a date picker associated with it, controlling the date format.

Then, likewise, would be super beneficial to be able to search for all assets purchased before X date as part of the advanced search.

When you try to use an apostrophe as the value in a custom field, you get a MySQL syntax error.

6

(2 replies, posted in Feature Requests)

I would second this request - would be great to have auto notifications when items under the receiving tab are past-due or perhaps a subscribe to category or asset/inventory so that you could receive notifications upon any move/reserve/checkout/in/shipping/receiving of a particular item or any item from a category.

Thanks!

I have some custom fields on the shipment page, specifically an "RMA" field.  How can I get this to be displayed on the packing slip?  I'm fine with editing PHP/HTML, just not sure the right/best spot to put the code snippet in.

Might you consider adding an RMA field to the shipment module?  Seems a pretty standard field involved when shipping assets in/out.

First of all, you should brag the portable access feature more.  Just found it by happenstance flipping through the blogs!  Awesome!

http://[Your Tracmor URL]/portable

However, the location field for moving assets is a simple text box, not a drop down select.  How does this work?

Thanks!

Just bumping this request - it's been almost a year since the last post here, would love to see more reports than just the transaction report.  Thanks!

10

(3 replies, posted in Bug Reports)

FedEx Logo: Instead of packaging the file, then perhaps a link to your hosted version?  Just a thought...at least remove references to it from the code if you can't include it.

1) Had to manually download and copy http://demo.tracmor.com/images/fedexlogo.png to /images/ folder.

2) Had to update line 26 of /login.tpl.php for relative link of header background (images/main_header_bg.png) instead of (../images/main_header_bg.png)

12

(11 replies, posted in Bug Reports)

Well you at least sent me down the right direction here - in my php.ini, I was already set to error reporting E_ALL & ~E_NOTICE, thus not showing any E_NOTICE error messages.  E_ALL will display these error messages.  So, started digging through your code and in /includes/prepend.inc.php on line 260, you have set error_reporting to E_ALL, which will show E_NOTICE errors.

Changing "E_ALL" to "E_ALL & ~E_NOTICE" resolved this.  New line reads:

                       set_error_handler('QcodoHandleError', E_ALL & ~E_NOTICE);

This fixed the problem.

13

(11 replies, posted in Bug Reports)

Ok - done.  Changed it to ID 9 - new SQL output below, still receiving PHP errors on shipping module:

    setting_id    short_description    value
            1    company_id    9
            2    image_upload_prefix    NULL
            3    fedex_gateway_URI    NULL
            4    company_logo    empty.gif
            5    packing_list_terms    NULL
            6    packing_list_logo    NULL
            7    min_asset_code    NULL
            8    fedex_account_id    NULL
            9    autodetect_tracking_numbers    NULL
            10    custom_shipment_numbers    NULL
            11    custom_receipt_numbers    NULL
            12    receive_to_last_location    NULL
            13    portable_pin_required    1
            14    user_limit    NULL

14

(11 replies, posted in Bug Reports)

setting_id    short_description    value
            1    company_id    NULL
            2    image_upload_prefix    NULL
            3    fedex_gateway_URI    NULL
            4    company_logo    empty.gif
            5    packing_list_terms    NULL
            6    packing_list_logo    NULL
            7    min_asset_code    NULL
            8    fedex_account_id    NULL
            9    autodetect_tracking_numbers    NULL
            10    custom_shipment_numbers    NULL
            11    custom_receipt_numbers    NULL
            12    receive_to_last_location    NULL
            13    portable_pin_required    1
            14    user_limit    NULL

15

(11 replies, posted in Bug Reports)

Running that query returned:

setting_id: 3
short_description: fedex_gateway_URI
value: NULL

Appears to already be in the database table...next?

16

(11 replies, posted in Bug Reports)

That's just it - when I go to the Admin module, Shipping/Receiving section, I get the PHP error and nothing is parsed on the page (see the second error above).  I have created contacts, but everything "Shipping" related turns up the PHP errors above.

17

(11 replies, posted in Bug Reports)

PHP Version:    5.2.10-2ubuntu6.3
MySql Version:    5.1.37
Qcodo Version:    0.3.32 (Qcodo Beta 3)
Build Date:    Mon Jun 15 23:24:41 PDT 2009

I created a more details post last week in the Bugs forum, but see that forum isn't moderated by anyone, therefore maybe not monitored?  Posting a link here:

http://www.tracmor.com/forum/topic/240/ … php-error/

PHP Version:    5.2.10-2ubuntu6.3
MySql Version:    5.1.37
Qcodo Version:    0.3.32 (Qcodo Beta 3)
Build Date:    Mon Jun 15 23:24:41 PDT 2009

19

(11 replies, posted in Bug Reports)

I have done a fresh, brand new install of Tracmor.  Initially things appear to be running smoothly.  However, when I click to the Admin > Shipping/Receiving OR Shipping > Schedule Shipment, I receive the following PHP Error and the page does not load:

==========================================

Error in PHP Script
/inventory/shipping/shipment_edit.php    PHP Version: 5.2.10-2ubuntu6.3;  Zend Engine Version: 2.2.0;  Qcodo Version: 0.3.32 (Qcodo Beta 3)
Application: Apache/2.2.12 (Ubuntu);  Server Name: systems.willowcreek.org
HTTP User Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.43 Safari/532.5
Trying to get property of non-object
Error Type:   E_NOTICE   

Source File:   /var/www/inventory/includes/data_classes/TracmorSettings.class.php         Line:   46   

Line 41:                    ///////////////////
Line 42:   
Line 43:                    default:
Line 44:                        try {
Line 45:                            $objAdminSetting = AdminSetting::LoadByShortDescription(QConvertNotation::UnderscoreFromCamelCase($strName));
Line 46:                            return $objAdminSetting->Value;
Line 47:                        } catch (QCallerException $objExc) {
Line 48:                            $objExc->IncrementOffset();
Line 49:                            throw $objExc;
Line 50:                        }
Line 51:                }

Call Stack:

#0 /var/www/inventory/includes/data_classes/TracmorSettings.class.php(46): QcodoHandleError()
#1 /var/www/inventory/shipping/fedexdc.class.php(53): TracmorSettings->__get()
#2 /var/www/inventory/shipping/shipment_edit.php(28): require_once()

--------------------------------------------------------------------------------

Error in PHP Script
/inventory/admin/shipping_account_list.php    PHP Version: 5.2.10-2ubuntu6.3;  Zend Engine Version: 2.2.0;  Qcodo Version: 0.3.32 (Qcodo Beta 3)
Application: Apache/2.2.12 (Ubuntu);  Server Name: systems.willowcreek.org
HTTP User Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.43 Safari/532.5
Trying to get property of non-object
Error Type:   E_NOTICE   

Rendered Page:   Click here to view contents able to be rendered

Source File:   /var/www/inventory/includes/data_classes/TracmorSettings.class.php         Line:   46   

Line 41:                    ///////////////////
Line 42:   
Line 43:                    default:
Line 44:                        try {
Line 45:                            $objAdminSetting = AdminSetting::LoadByShortDescription(QConvertNotation::UnderscoreFromCamelCase($strName));
Line 46:                            return $objAdminSetting->Value;
Line 47:                        } catch (QCallerException $objExc) {
Line 48:                            $objExc->IncrementOffset();
Line 49:                            throw $objExc;
Line 50:                        }
Line 51:                }

Call Stack:

#0 /var/www/inventory/includes/data_classes/TracmorSettings.class.php(46): QcodoHandleError()
#1 /var/www/inventory/admin/shipping_account_list.php(169): TracmorSettings->__get()
#2 /var/www/inventory/admin/shipping_account_list.php(76): ShippingAccountListForm->txtFedexGatewayUri_Create()
#3 /var/www/inventory/includes/qcodo/_core/qform/QFormBase.class.php(275): ShippingAccountListForm->Form_Create()
#4 /var/www/inventory/admin/shipping_account_list.php(347): QFormBase::Run()