Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 3.96 KB

EstimateCreate.md

File metadata and controls

34 lines (27 loc) · 3.96 KB

MissionControl.EstimateCreate

Properties

Name Type Description Notes
workstepEstimates [WorkstepEstimateCreate] [optional]
approach String The assumed production approach which forms the basis of this estimate. This information is used to compare several different production methods and their outcome on the sales price and availabity of the job The default value if this is not set is `unknown`. Other options are `earliest` which represents the production approach that yields the finished goods as early as possible by completion date. Note that based on machine capacity this doesn't necessarly need to be the quickest approach. The `quickest` approach is the one that produces this job with the least amount of time spend in production. The `cheapest` approach is the one that has the lowest production costs for the printer. [optional]
currency String The currency used for all monetary information of this order, including all line items. Currencies cannot be mixed within the same order. [optional]
productionCosts Number The total cost for a print shop to produce the estimated job This includes all internal and external labour as well as material costs. This does not include markups. The amount is given in the integer sub-unit of the currency specfified in `currency` (i.e. cents). [optional]
handlingCosts Number The total handling cost that should be billed to the customer. Handling costs can be surcharges for logistics, warehouse capacity, or even order processing and estimating. The amount is given in the integer sub-unit of the currency specfified in `currency` (i.e. cents). [optional]
shippingCosts Number The estimated shipping costs that should be billed to the customer. The amount is given in the integer sub-unit of the currency specfified in `currency` (i.e. cents). [optional]
markupPercentage String The relative percentage of the markup that is added to the production costs, handling and shipping costs to reach a customer-facing sales price. This percentage is given as a fraction of 100. It must be greater than or equal to 0, and can exceed 1. [optional]
markupCosts String The absolute costs of the markup charged to the customer. This is supposed to be the surplus the printer archives on this job after deducting all costs. It should correspond to the given `markup_percentage`. The markup costs are given in the currency selected in `currency` (i.e. EUR). [optional]
netSalesPrice String The sales price that the customer has to pay for this job without taxes, given in the currency selected in `currency` (i.e. EUR). This should be the sum of the production costs, handling & shipping fees, and the markup costs. [optional]
grossSalesPrice String The overall total sales price that the customer has to pay for this job with taxes, given in the currency selected in `currency` (i.e. EUR). This should be the sum of the production costs, handling & shipping fees, the markup costs and taxes. [optional]
taxes String The estimated sales or VAT taxes that the customer has to pay for this Job, given in the currency selected in `currency` (i.e. EUR). This should correspond to the difference between `net_sales_price` and `gross_sales_price` but we do not enforce this. [optional]
vendorId String The UUID of the Organization which created this Estimate [optional]

Enum: ApproachEnum

  • unknown (value: "unknown")
  • earliest (value: "earliest")
  • cheapest (value: "cheapest")
  • quickest (value: "quickest")

Enum: CurrencyEnum

  • USD (value: "USD")
  • EUR (value: "EUR")
  • GBP (value: "GBP")