update reports
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-12-20 12:29:15 +07:00
parent 499df06439
commit f146dd1c74
27 changed files with 369 additions and 60 deletions

View File

@@ -11,6 +11,7 @@ namespace rmutr_report.Models
public decimal? quantity_1 { get; set; }
public decimal? quantity_2 { get; set; }
public decimal? quantity_3 { get; set; }
public decimal? quantity_4 { get; set; }
public decimal? total_amount { get; set; }
public List<expense_detail> data { get; set; }
}
@@ -21,6 +22,7 @@ namespace rmutr_report.Models
public decimal? quantity_1 { get; set; }
public decimal? quantity_2 { get; set; }
public decimal? quantity_3 { get; set; }
public decimal? quantity_4 { get; set; }
public decimal? total_amount { get; set; }
}
}

View File

@@ -16,6 +16,7 @@ namespace rmutr_report.Models
public decimal? quantity { get; set; }
public string unit { get; set; }
public decimal? unit_price { get; set; }
public decimal? quantity_month { get; set; }
public decimal? total_amount { get; set; }
}