Merge pull request #16033 from FHenry/12_fix_position_coutry_resource

move extrafield to the end as other card
This commit is contained in:
Laurent Destailleur 2021-01-21 13:22:04 +01:00 committed by GitHub
commit b0ea2ac187
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -320,10 +320,6 @@ if ($action == 'create' || $object->fetch($id, $ref) > 0)
print '<td>';
print $object->description;
print '</td>';
// Other attributes
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php';
print '</tr>';
// Origin country code
@ -332,6 +328,11 @@ if ($action == 'create' || $object->fetch($id, $ref) > 0)
print '<td>';
print getCountry($object->country_id, 0, $db);
print '</td>';
// Other attributes
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php';
print '</tr>';
print '</table>';