Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 3 online users. » 0 Member(s) | 1 Guest(s) Bing, Google
|
Latest Threads |
Finetuning the way you se...
Forum: coreBOS Development
Last Post: alexandy40d
12-06-2024, 07:38 AM
» Replies: 4
» Views: 8,140
|
MariaDB Version
Forum: Administrator Support
Last Post: joebordes
11-01-2024, 11:49 AM
» Replies: 1
» Views: 629
|
Product Catalog / parts c...
Forum: Modules/Extension Support
Last Post: joebordes
09-15-2024, 09:40 AM
» Replies: 1
» Views: 1,107
|
Challenges and Best Pract...
Forum: coreBOS Development
Last Post: wishforbes
08-30-2024, 04:21 PM
» Replies: 0
» Views: 720
|
PRODUCTS IN ACCOUNTS BY O...
Forum: User Support
Last Post: jonathanmoore858
08-03-2024, 04:14 PM
» Replies: 4
» Views: 2,766
|
Zapier | Integration
Forum: Modules/Extension Support
Last Post: bernardgbailey
07-29-2024, 11:45 PM
» Replies: 7
» Views: 9,848
|
Versión PHP recomendada
Forum: International
Last Post: joebordes
07-04-2024, 05:42 PM
» Replies: 7
» Views: 3,329
|
Could Someone Give me Adv...
Forum: Open Discussions
Last Post: joebordes
06-27-2024, 08:32 AM
» Replies: 1
» Views: 1,705
|
RESTRICTED FILE
Forum: Administrator Support
Last Post: inspectorflint
06-22-2024, 08:08 AM
» Replies: 7
» Views: 5,659
|
GENDOC imágenes
Forum: Open Discussions
Last Post: joebordes
06-02-2024, 05:11 PM
» Replies: 4
» Views: 2,038
|
|
|
Certain profiles can't use SalesOrder when MasterDetail Business Map is used |
Posted by: Guido1982 - 11-01-2016, 07:35 PM - Forum: coreBOS Development
- Replies (8)
|
|
I've setup a Business Map that allows for "units delivered / received" in SalesOrders. Works fine for me, but for certain profiles, that have less rights, I get the following when trying to open a SalesOrder:
Code: Fatal error: Uncaught exception 'WebServiceException' with message 'Permission to perform the operation is denied' in [[SERVER_PATH]]/crm/include/Webservices/DescribeObject.php:25 Stack trace: #0 [[SERVER_PATH]]/crm/modules/cbMap/processmap/MasterDetailLayout.php(206): vtws_describe('InventoryDetail...', Object(Users)) #1 [[SERVER_PATH]]/crm/modules/cbMap/processmap/MasterDetailLayout.php(164): MasterDetailLayout->getFieldInfo('units_delivered...') #2 [[SERVER_PATH]]/crm/modules/cbMap/processmap/MasterDetailLayout.php(98): MasterDetailLayout->convertMap2Array() #3 [[SERVER_PATH]]/crm/modules/cbMap/cbMap.php(472): MasterDetailLayout->processMap(Array) #4 [[SERVER_PATH]]/crm/include/utils/DetailViewUtils.php(1338): cbMap->__call('MasterDetailLay...', Array) #5 [[SERVER_PATH]]/crm/include/ut in [[SERVER_PATH]]/crm/include/Webservices/DescribeObject.php on line 25
I've set the permissions for this profile to allow the use of InventoryDetails module, but without success...
|
|
|
Webservice by cURL? |
Posted by: Guido1982 - 11-01-2016, 03:19 PM - Forum: coreBOS Development
- Replies (6)
|
|
Preparing for my webservice project, I was wondering the following. I noticed HTTP_CLIENT is the recommended approach, but I also see the latest release is from 2008. I've used simple cURL requests in my ExactOnline module to connect to the Exact API (and have also used cURL to connect to the Twitter API). Wouldn't that be possible?
|
|
|
My first Business Map |
Posted by: Guido1982 - 10-31-2016, 02:06 PM - Forum: coreBOS Development
- Replies (4)
|
|
Okay, the goal is this: we have payment conditions coming from Exact Online. A field is created in Accounts, Quotes and SalesOrders (and Invoices of course) that all have their origin in the same table. That table is synchronised with Exact. When a SalesOrder is created or edited, it needs to see if there is a quote related. I've made a workflow for this, that just checks if the quote field for an invoice isn't empty. When the quotefield in a salesorder is empty, I'd like to use my business map. That looks like this:
PHP Code: <map>
<originmodule> <originid>6</originid> <originname>Accounts</originname> </originmodule> <targetmodule> <targetid>22</targetid> <targetname>SalesOrder</targetname> </targetmodule> <fields> <field> <fieldname>exact_payment_cond</fieldname> <fieldID>933</fieldID> <Orgfields> <Orgfield> <OrgfieldName>exact_payment_cond</OrgfieldName> <OrgfieldID>932</OrgfieldID> </Orgfield> </Orgfields> </field> </fields> </map>
I've chosen "Mapping" as the maptype and set "SalesOrder" as the target module. The mapname is "Accounts2SalesOrder".
Now for my problem, I can't select the Business map from the workflow task. When the popup opens, it says there are no maps...
|
|
|
Trying to limit field access throuhg workflow |
Posted by: Guido1982 - 10-31-2016, 08:02 AM - Forum: User Support
- Replies (14)
|
|
I'm trying to limit access to a dropdown through a workflow. I've setup the workflow so that it checks for the status I don't want changed by unauthorized people first. So " if status is 'do not change' " triggers a task. That task then checks against the role of the last user that last modified (so the person that just modified the status) and if the role is not the desired one I set the status back to 'do not change'. But no luck. Is this even possible?
|
|
|
A note on using MasterDetail Business Mapping |
Posted by: Guido1982 - 10-29-2016, 07:57 PM - Forum: coreBOS Development
- Replies (1)
|
|
I used the BusinessMap from this example:
Quote:I think I have very good news for you. Since the beginning of September you can already do this in coreBOS
coreBOS now supports adding custom fields in the product lines natively. This permits you to easily add partial deliveries, warranty dates, product line costs or serial numbers for example very easily.
All that information is saved on the Inventory Details module where you can control the status of things.
http://corebos.org/documentation/doku.ph...ailmapping
It took me a while to find out that the name of the BM is important. In my case I chose to link to Purchase Orders so the name became "PurchaseOrderInventoryDetails".
|
|
|
|