ProductionPlanModel constructor

ProductionPlanModel(
  1. String work_order,
  2. String sales_order,
  3. String production_item,
  4. String production_item_name,
  5. double qty_to_manufacture,
  6. String produced_qty,
  7. String warehouse,
  8. String item_code,
  9. double actual_qty,
  10. double ordered_qty,
  11. double projected_qty,
  12. String bom_no,
  13. String stock_uom,
  14. String name,
  15. String delivery_date,
  16. double base_grand_total,
  17. String for_warehouse,
  18. int available_qty,
  19. String parent,
  20. String raw_material_name,
  21. double required_qty_per_unit,
  22. double required_qty,
  23. double remaining_qty,
  24. int allotted_qty,
  25. String arrival_date,
  26. double arrival_qty,
)

Implementation

ProductionPlanModel(
  this.work_order,
  this.sales_order,
  this.production_item,
  this.production_item_name,
  this.qty_to_manufacture,
  this.produced_qty,
  this.warehouse,
  this.item_code,
  this.actual_qty,
  this.ordered_qty,
  this.projected_qty,
  this.bom_no,
  this.stock_uom,
  this.name,
  this.delivery_date,
  this.base_grand_total,
  this.for_warehouse,
  this.available_qty,
  this.parent,
  this.raw_material_name,
  this.required_qty_per_unit,
  this.required_qty,
  this.remaining_qty,
  this.allotted_qty,
  this.arrival_date,
  this.arrival_qty,
);