From: Phil D. <ph...@du...> - 2003-07-07 05:19:42
|
RE: ConfirmDispatch_Invoice.php - I tried it as you said and see the problem ... sorry I didn't understand the snag - will put the fix in the next release we seem to be averaging one a week at the mo. There are some other issues too - I notice that my PrintCustTrans.php and WWW_Users.php have introduced a few blemishes - losing session variables for pagesize and the active module for the menu options to show. You can always over-ride the calculated freight cost anyway at the time of invoice - are you talking about at the time of order ? Yes - there are a number ( countless :-( ) of things the system won't currently do as you point out. Not sure how to deal with mutliple taxes on one invoice - any solution is going to be messy I fear. Another few tax fields on the invoice are possiblities but ugly. The system is not set up for multi-currency bank accounts - all bank accounts are in the company's functional currency. There's a whole new can of worms there. For mutli-company log in why not seperate URL's for each company - different logo and company name on the page so all easy?? I think every company will want slightly different stationery - hey you can charge for such modifications and the client/customer feels special and its easy to do as part of the installation. > > Re. ConfirmDispatch_Invoice.php > The change for looking at non-completed items fixes the following scenario : > > 1- Create an order with 4 items > 2- enter the dispatch items page, and enter the full quantity for 2 of the > items, process > 3- main menu and go back to the dispatch page > 4- enter a partial quantity for the remaining 2 items, process > 5- you receive the error "This order has been changed or invoiced ..." - it > is looking for the 2 items that are completed in step 2 > > Re : Custoemr Freight Charge > How about adding an edit box to enter this when the auto-calc flag is off ? > I already had this but didn't merge it. > > Re: Opening in a separate window > I sort of had a feeling this would cause problems on different browsers, I'm > an IE guy so I naively assume anything that works here is OK...well my > rationale for displaying reports in a separate window is : > 1 - to be able to view multiple invoices, recepits at the same time > 2 - pressing "back" from a report display does not usually work > Maybe we could have a way to set the display inline/separate option from > web-erp ? > > Re: Jasper > I agree it's not the way to go now - most low-cost hosting providers do not > even have JSP support so this would be a big limiting factor anyways. I > still haven't got round to testing r&os for Arabic output, will do shortly. > I'll have a look at the converted one later today !! > > A number of items that I think may come up : > > 1 - Having more than one tax item on an invoice. Here sometimes there are up > to 3 different taxes on an invoice. I guess I could add an inventory > category for them and set them as dummy items or so, and set the GL codes to > VAT ? (I know nothing about accounting) > 2 - Storing a currency with a bank account. > 3 - multi-company login. login would be company/user/pass. Different > companies would link to different DBs. > 4 - items in invoices,orders, etc. I've been gathering these from a number > of potential clients. They all have a number of static fields either at the > top or bottom of the invoice/order (eg. in a purchase order a line for the > purchasing manager to sign). Maybe in the company prefs we could add a > section for form customization. This would be limited to adding static text > lines to the form. > > cheers for now > Sherif > > |
From: Chris B. <cb...@en...> - 2003-07-07 18:43:32
|
Right now the company i work with uses a different ERP system, but will be moving to web-erp in the near future. Our Materials manager asked me about notifications with in the system, particularly when we have a negative On-Hand Quantity amount, be it because of a mistake or too high of a demand from the sales orders. I was wondering if there is currently a way to email the materials manager when a stock item hits below the 0 mark. If not I was going to start today to implement such an item. Let me know what you think. Thanks Chris Bice IT Manager SRC Diversified 417-860-0069 |
From: Chris B. <cb...@en...> - 2003-07-07 19:38:57
|
I noticed that if you click enter at the login screen, without entering a login name or password, it will let you into the system, however you receive the following error: Warning: in_array() [function.in-array]: Wrong datatype for second argument in /var/www/htdocs/web-erp/header.inc on line 76 If you click logout, to try and log back in it will not allow you destroy the session because of the above error. If you replace line 76: if (! in_array($PageSecurity,$SecurityGroups[$_SESSION["AccessLevel"]]) OR !isset($PageSecurity)){ with: if (! array($PageSecurity,$SecurityGroups[$_SESSION["AccessLevel"]]) OR !isset($PageSecurity)){ it clears the message up and the other functions work fine. Is this a bug or do I have my setup incorrect. Chris Bice IT Manager SRC Diversified 417-860-0069 |
From: Chris B. <cb...@en...> - 2003-07-07 19:42:27
|
sorry scratch that. If you put the line below it gives you full access to the system. On Mon, 2003-07-07 at 14:38, Chris Bice wrote: > I noticed that if you click enter at the login screen, without entering > a login name or password, it will let you into the system, however you > receive the following error: > Warning: in_array() [function.in-array]: Wrong datatype for second > argument in /var/www/htdocs/web-erp/header.inc on line 76 > > If you click logout, to try and log back in it will not allow you > destroy the session because of the above error. If you replace line 76: > if (! in_array($PageSecurity,$SecurityGroups[$_SESSION["AccessLevel"]]) > OR !isset($PageSecurity)){ > > with: > > if (! array($PageSecurity,$SecurityGroups[$_SESSION["AccessLevel"]]) OR > !isset($PageSecurity)){ > > it clears the message up and the other functions work fine. Is this a > bug or do I have my setup incorrect. > > Chris Bice > IT Manager > SRC Diversified > 417-860-0069 > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > _______________________________________________ > Web-erp-developers mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/web-erp-developers |