When i running my code in local computer this code running well, and then I move code to server after that my code can not running. Can anyone help me ?
odoo.define('hr_attendance.my_attendances', function (require) {
    "use strict";
    var AbstractAction = require('web.AbstractAction');
    var core = require('web.core');
    var field_utils = require('web.field_utils');
    const session = require('web.session');
    var MyAttendances = AbstractAction.extend({
        contentTemplate: 'HrAttendanceMyMainMenu',
        events: {
            "click .o_hr_attendance_sign_in_out_icon": _.debounce(function() {
                this.update_attendance();
            }, 200, true),
        },
        willStart: function () {
            var self = this;
            var def = this._rpc({
                model: 'hr.employee',
                method: 'search_read',
                args: [[['user_id', '=', this.getSession().uid]], ['attendance_state', 'name', 'hours_today']],
                context: session.user_context,
            })
            .then(function (res) {
                self.employee = res.length && res[0];
                if (res.length) {
                    self.hours_today = field_utils.format.float_time(self.employee.hours_today);
                }
            });
            return Promise.all([def, this._super.apply(this, arguments)]);
        },
        update_attendance: function () {
            var self = this;
            if (self.employee.attendance_state === "checked_in" && self.employee.hours_today < 1) {
                self.displayNotification({
                    title: "Pemberitahuan",
                    message: "Waktu kerja belum ada 1 jam, Check-outlah nanti.",
                    type: 'warning',
                });
                return;
            }
            // Proses update attendance jika validasi lolos
            this._rpc({
                model: 'hr.employee',
                method: 'attendance_manual',
                args: [[self.employee.id], 'hr_attendance.hr_attendance_action_my_attendances'],
                context: session.user_context,
            })
            .then(function(result) {
                if (result.action) {
                    self.do_action(result.action);
                } else if (result.warning) {
                    self.displayNotification({ title: result.warning, type: 'danger' });
                }
            });
        },
    });
    core.action_registry.add('hr_attendance_my_attendances', MyAttendances);
    return MyAttendances;
});
