1

(7 replies, posted in Setup)

Is there any option to delete all the entries from within the system itself? (To delete as batch or by selecting multiple entries at a time)

My installation have many sample data which I created while looking around the system.
Is there are way that I can reset complete system so that it becomes fresh installation?

itronics wrote:

I'm not sure what you mean. Do you want to grant access to inventory listing for your customers without possibility to entry sales?
If this is what you mean, you can try configure special role for customer access.

Janusz


I am sorry if you could not get my point. In sort, what is the API for accessing Customer, Inventry Items and make GL posting?

I am working on a module which involves

* Inventory
* Customer
* Sales

I checked deep into the database structure of front accounting, There are 2 tables which lists the inventory
1 is 'stock_master' and the other is 'item_codes'. Then the 'crm_persons' customer. Ok lets come to the point.

1. Is there any interface which I can access Customers and Inventry (with the price) from from accounting without touching into database?
2. Interface to post sales?

I was googling and could not find any explanation. I am would more appriciated if I can get the answer for this.

Thanks

itronics wrote:

You are free to use any numbers in range  <100<<8; 155<<8> as section id, and any number from <101; 255> as security area id. You should only keep them unique inside module where they are defined.

In fact both section (tab), and area (mainly menu options) identifiers are rewritten in run time to keep them unique on your FA installation. If you assign the numbers according to above rules you should never encounter problems here.

Janusz

Thank you Janusz, I understood. cool

Go it.
and my question is, can any one add any number and identification there? is there are procedure to follow to add it?

Hi friends, I am a developer using FA.

First thanks for all developers who are involved in FA. The architecture and functionality of the software is very good. I love it.

I wanted to participate with you people by providing my effort. I have a set of module that can work with FA and are not still developed. I am on my first step in developing them. My bad lack there is no any Developer documentation for this as far as I searched. I had to learn the API from other modules developed by other developers. I got the path. I am getting some confusion with some code set. Please anyone try to solve it for me.

In Report Generator module I can see this line
define('SS_REPORT_GENERATOR',    130<<8);

and in Asset Register module I can see it as
define('SS_ASSETREGISTER', 101<<8);

I could understan this is some unique identifier for the module. My question is, are they have any rule to design or just the programmers set code? Specially the number set '130<<8' and '101<<8' what is the logic behind it?