Skip to content

Commit

Permalink
Merge pull request #358 from shibaken/main
Browse files Browse the repository at this point in the history
shibaken/main to dbca-wa/main
  • Loading branch information
jawaidm authored Oct 4, 2023
2 parents 7755d7e + 55ef041 commit 5dd3301
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions mooringlicensing/components/main/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,12 +280,12 @@ def sticker_export():
sticker.last_name,
sticker.postal_address_line1,
sticker.postal_address_line2,
sticker.postal_address_suburb,
sticker.postal_address_state,
sticker.postal_address_suburb.upper(),
sticker.postal_address_state.upper(),
sticker.postal_address_postcode,
sticker.approval.description,
sticker.number,
sticker.vessel_registration_number,
sticker.vessel_registration_number.upper(),
mooring_names,
sticker.get_sticker_colour(),
sticker.get_white_info(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -303,15 +303,16 @@ export default {
return {
data: "id",
orderable: false,
searchable: false,
searchable: true,
visible: true,
'render': function(row, type, full){
if (full.submitter){
return `${full.submitter.first_name} ${full.submitter.last_name}`
}
return ''
},
name: 'submitter__first_name, submitter__last_name',
// name: 'submitter__first_name, submitter__last_name',
name: 'proposalapplicant__first_name, proposalapplicant__last_name, proposalapplicant__email'
}
},
column_assigned_to: function(){
Expand Down

0 comments on commit 5dd3301

Please sign in to comment.