All of these lines needs to be changed. Unless you are really trying to change all future Journey Charges with your last three lines(and that would be assuming those are static values)
thisJourney.costOfJourney = thisJourney.journeyCost();//dont know why you are passing the journey object to this method.
Journey.dayCharge = Journey.dayCharge + thisJourney.costOfJourney;
Journey.weekCharge = Journey.weekCharge + thisJourney.costOfJourney;
Journey.monthCharge = Journey.monthCharge + thisJourney.costOfJourney;
Those last three lines still need work, I dont know why you are trying to modify the static variable. Try this instead if you just want to set the charges of thisJourney
thisJourney.dayCharge = Journey.dayCharge + thisJourney.costOfJourney;
thisJourney.weekCharge = Journey.weekCharge + thisJourney.costOfJourney;
thisJourney.monthCharge = Journey.monthCharge + thisJourney.costOfJourney;
Although even with that the charge values should be some constant. You really shouldnt be mixing a static class and instance class of the same type, while interchanging their uses.