Skip to content

Instantly share code, notes, and snippets.

@akinov
Last active December 26, 2019 10:35
Show Gist options
  • Save akinov/cdcce7c981f592970cc2a7966ce8bc43 to your computer and use it in GitHub Desktop.
Save akinov/cdcce7c981f592970cc2a7966ce8bc43 to your computer and use it in GitHub Desktop.
マネフォクラウドの勤怠一括入力
$('#js-multiple-timesheet-employee-daily-records-table tr').each((i, e)=>{
if (!/平日/.test(e.textContent)) return;
$('.add_fields',e).click();
$('[name*="elapsed_minutes_at_work_in_with_neuminour_string_format"]', e)[0].value = '10:00';
$('[name*="elapsed_minutes_at_work_out_with_neuminour_string_format"]', e)[0].value = '19:00';
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment