Tabnine Logo
Project$Builder.withBudget
Code IndexAdd Tabnine to your IDE (free)

How to use
withBudget
method
in
it.tidalwave.accounting.model.Project$Builder

Best Java code snippets using it.tidalwave.accounting.model.Project$Builder.withBudget (Showing top 4 results out of 315)

origin: it.tidalwave.accounting/it-tidalwave-accounting-marshalling-xml

 @Nonnull
 public Project.Builder toBuilder (final @Nonnull Accounting accounting)
  {
   try 
    {
     final Customer customer = accounting.getCustomerRegistry().findCustomers().withId(customerXml.getId()).result();
     return new Project.Builder().withId(id)
                   .withCustomer(customer) 
                   .withName(name)
                   .withNumber(number)
                   .withDescription(description)
                   .withNotes(notes)
                   .withStatus(status)
                   .withHourlyRate(hourlyRate)
                   .withBudget(budget)
                   .withStartDate(startDate)
                   .withEndDate(endDate)
                   .withEvents(JobEventXml.toJobEvents(jobEventsXml));
    } 
   catch (NotFoundException e) 
    {
     throw new RuntimeException(e);
    }
  }
}
origin: it.tidalwave.accounting/it-tidalwave-accounting-importer-ibiz

.withBudget(projectConfig.getMoney("projectEstimate"))
.withCustomer(customer)
.withName(projectConfig.getString("projectName"))
origin: it.tidalwave.accounting/it-tidalwave-accounting-model-impl-inmemory

                   .create();
final Project p = Project.builder().withId(new Id("2"))
                  .withBudget(new Money(10500, "EUR"))
                  .withCustomer(c1)
                  .withName("Project 1")
origin: it.tidalwave.accounting/it-tidalwave-accounting-model

      .withEvents(je1)
      .withHourlyRate(rate1)
      .withBudget(new Money(123456, "EUR"))
      .create();
final Project acmeConsultingProject2 =
      .withEvents(je2)
      .withHourlyRate(rate2)
      .withBudget(new Money(234567, "EUR"))
      .create();
final Project acmeFinancingProject1 =
      .withHourlyRate(rate3)
      .withEvents(je3)
      .withBudget(new Money(345678, "EUR"))
      .create();
final Project acmeFinancingProject2 =
      .withHourlyRate(rate4)
      .withEvents(je4)
      .withBudget(new Money(456789, "EUR"))
      .create();
it.tidalwave.accounting.modelProject$BuilderwithBudget

Popular methods of Project$Builder

  • create
  • withCustomer
  • withEndDate
  • withHourlyRate
  • withId
  • withName
  • withNumber
  • withStartDate
  • withDescription
  • withEvents
  • withNotes
  • <init>
  • withNotes,
  • <init>,
  • withStatus,
  • getBudget,
  • getCustomer,
  • getDescription,
  • getEndDate,
  • getHourlyRate,
  • getId

Popular in Java

  • Making http requests using okhttp
  • setScale (BigDecimal)
  • addToBackStack (FragmentTransaction)
  • scheduleAtFixedRate (Timer)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • String (java.lang)
  • Permission (java.security)
    Legacy security code; do not use.
  • Collectors (java.util.stream)
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now