Java

Employee Sales Promotion using Java

The Employee Sales Promotion system is developed using Java.The system used to calculating the employee promotion.  in order to calculating the employee Promotion we have a condition

  1. Every Year First two month will be calculating promotion. every month(Jan,Feb) employee should be  done the sales more than 2 million.  they will be promoted. otherwise not promoted.

paste the code inside the ok button

 String employeename = txtempname.getText();
 double jan  = Double.parseDouble((txtjan.getText()));
 double feb  = Double.parseDouble((txtfeb.getText()));
 
  if(jan > 2000000 && feb > 2000000  )
   {
              JOptionPane.showMessageDialog(null, "Congrats Promoteddd!!!!!!!!!!!");
          }
           else
           {
        JOptionPane.showMessageDialog(null, "Sorry you are not Promoteddd!!!!");
            }

i have attached the video link below. which will do this tutorials step by step.

 

admin

Recent Posts

Registration with image upload Java Jdbc(Download Source code)

Introduction In this section, we will guide you step by step in the development of an image upload registration system in Java using MySQL and JDBC. In the application, users register…

4 days ago

Touchable shop Pos system using Java

The Touchable Shop POS (Point of Sale) system is a sophisticated software solution developed using…

4 weeks ago

Build Your First Responsive Login Form Using HTML and CSS FlexBox

Creating a responsive login form is a crucial skill for any web developer. In this…

4 weeks ago

Build Crud API with Laravel 12

In this tutorial will teach  Laravel 12 CRUD API  by step. Laravel  10 CRUD Application …

1 month ago

laravel 12 image upload tutorial

In this lesson we talk about laravel 12 image uploading and display the image step…

1 month ago

Laravel 12 CRUD Application

In this tutorial will teach Laravel 12 CRUD Application step by step. Laravel  12 CRUD…

1 month ago