Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Autocomplete: what about more UI types?
#1
I read we can only use autocomplete on UI types 10 and 2. That's fine for newer custom modules, but in most system modules like salesorders or invoice we have more 'exotic' types like 73 or 57. What is the reason we can't use autocomplete business maps on those?
Reply
#2
The reason is that we have to hard code the autocomplete into each uitype we need to support.
Joe
TSolucio
Reply
#3
I would prefer you dedicated you time to converting the exotic types to uitype 10 and cleanup the code
Joe
TSolucio
Reply
#4
I have absolutely no problem there, would prefer the same thing. The only thing I was wondering if there would be any unwanted side-effects when transforming let's say the contact field in salesorders to a UI10 field.
Reply
#5
that is where the trick is: catching all the side effects :-)

If you are interested I can look up some commits where we do this as we have already standardized a few so you can get an idea of what needs to be done.
Joe
TSolucio
Reply
#6
It always it isn't it ;-)

Sure, would like that. I'd love to put in some work to convert these.
Reply
#7
These are the ones we had to do to get HelpDesk "Related To" converted:

2d1235933a087539d04a869ce068d0a0d2365c39
fb5cc47a71619f1f0f548c44f4745e4c5ea49c5c
31a5e6b90f7909cb64ab91bf3652db699dbe2ec4

These are to convert Campaign on Potentials:

723ef2df9045584e09ad34dd123d4a476cb8355a
fb30184008bfc50af26099ca6d1ddcce7616a1f0
54ee377fda89e2752374fc6a675db4423d5c430b


And this one is to change "Product" on HelpDesk and FAQ:

437b598fe0ada0adc8b73bc1ce53fe550081cc55

HTH
Joe
TSolucio
Reply
#8
Thanks! Will study and ask if I have any questions.
Reply
#9
I've been going through some of the commits and would like to set out a global method for doing this kind of task. Since every 'exotic' UI type has its own implementation I think the approach should first figure out what that implementation is, and then come up with a plan to retain existing functionality while still converting the UI type to 10. This requires some investigation for each UI type I want to replace individually I suppose, so maybe it's best to start with the ones that have the biggest impact. I'm thinking about one that is used a lot in the system versus one that may not be used in many places but would be used many times since it's a common operation (contact or account on salesorder for instance). What would you advise?
Reply
#10
Let's tackle these:

('116', '357', '51',  '57', '66', '73', '75', '76', '77', '78', '80', '81')


Code:
SELECT *
from vtiger_field
where uitype in ('116', '357', '51',  '57', '66', '73', '75', '76', '77', '78', '80', '81')
order by uitype


if we order them by use:


Code:
SELECT uitype, count(*)
from vtiger_field
where uitype in ('116', '357', '51',  '57', '66', '73', '75', '76', '77', '78', '80', '81')
group by uitype
order by 2

it seems that 57 would have the most impact

77 and 116 are interesting....

take your pick and start asking :-)
Joe
TSolucio
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)