Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
d41ceae6
Commit
d41ceae6
authored
11 years ago
by
Florian Henry
Browse files
Options
Downloads
Patches
Plain Diff
- New: Can choose contact on event (action com) creation, and filtred by
thirdparty
parent
957ff084
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+1
-0
1 addition, 0 deletions
ChangeLog
htdocs/comm/action/fiche.php
+13
-11
13 additions, 11 deletions
htdocs/comm/action/fiche.php
with
14 additions
and
11 deletions
ChangeLog
+
1
−
0
View file @
d41ceae6
...
...
@@ -61,6 +61,7 @@ For users:
- New: Can send an email from thirdparty card.
- New: Can cancel holidays that were previously validated.
- Fix: [bug #1022] correct margin calculation for credit notes.
- New: Can choose contact on event (action com) creation, and filtred by thirdparty
For translators:
- Qual: Normalized sort order of all languages files with english reference files.
...
...
This diff is collapsed.
Click to expand it.
htdocs/comm/action/fiche.php
+
13
−
11
View file @
d41ceae6
...
...
@@ -564,23 +564,23 @@ if ($action == 'create')
}
else
{
$events
=
array
();
$events
[]
=
array
(
'method'
=>
'getContacts'
,
'url'
=>
dol_buildpath
(
'/core/ajax/contacts.php'
,
1
),
'htmlname'
=>
'contactid'
,
'params'
=>
array
(
'add-customer-contact'
=>
'disabled'
));
//For external user force the company to user company
if
(
!
empty
(
$user
->
societe_id
))
{
print
$form
->
select_company
(
$user
->
societe_id
,
'socid'
,
''
,
1
,
1
);
print
$form
->
select_company
(
$user
->
societe_id
,
'socid'
,
''
,
1
,
1
,
0
,
$events
);
}
else
{
print
$form
->
select_company
(
''
,
'socid'
,
''
,
1
,
1
);
print
$form
->
select_company
(
''
,
'socid'
,
''
,
1
,
1
,
0
,
$events
);
}
}
print
'</td></tr>'
;
// If company is forced, we propose contacts (may be contact is also forced)
if
(
GETPOST
(
"contactid"
)
>
0
||
GETPOST
(
'socid'
,
'int'
)
>
0
)
{
print
'<tr><td class="nowrap">'
.
$langs
->
trans
(
"ActionOnContact"
)
.
'</td><td>'
;
$form
->
select_contacts
(
GETPOST
(
'socid'
,
'int'
),
GETPOST
(
'contactid'
),
'contactid'
,
1
);
print
'</td></tr>'
;
}
print
'<tr><td class="nowrap">'
.
$langs
->
trans
(
"ActionOnContact"
)
.
'</td><td>'
;
$form
->
select_contacts
(
GETPOST
(
'socid'
,
'int'
),
GETPOST
(
'contactid'
),
'contactid'
,
1
);
print
'</td></tr>'
;
// Project
if
(
!
empty
(
$conf
->
projet
->
enabled
))
...
...
@@ -809,12 +809,14 @@ if ($id > 0)
{
print
'<tr><td width="30%">'
.
$langs
->
trans
(
"ActionOnCompany"
)
.
'</td>'
;
print
'<td>'
;
print
$form
->
select_company
(
$act
->
societe
->
id
,
'socid'
,
''
,
1
,
1
);
$events
=
array
();
$events
[]
=
array
(
'method'
=>
'getContacts'
,
'url'
=>
dol_buildpath
(
'/core/ajax/contacts.php'
,
1
),
'htmlname'
=>
'contactid'
,
'params'
=>
array
(
'add-customer-contact'
=>
'disabled'
));
print
$form
->
select_company
(
$act
->
societe
->
id
,
'socid'
,
''
,
1
,
1
,
0
,
$events
);
print
'</td>'
;
// Contact
print
'<td>'
.
$langs
->
trans
(
"Contact"
)
.
'</td><td width="30%">'
;
print
$form
->
select
array
(
"contactid"
,
(
empty
(
$act
->
societe
->
id
)
?
array
()
:
$act
->
societe
->
contact_array
()),
$act
->
contact
->
id
,
1
);
$form
->
select
_contacts
(
$act
->
societe
->
id
,
$act
->
contact
->
id
,
'
contact
id'
,
1
);
print
'</td></tr>'
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment