This commit is contained in:
@@ -940,45 +940,7 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
||||||
public long? UserId { get; set; }
|
|
||||||
public DateTime? ServiceStartDate { get; set; }
|
|
||||||
public DateTime? ServiceStopDate { get; set; }
|
|
||||||
public long? ServiceRateId { get; set; }
|
|
||||||
public string ServiceDetails { get; set; }
|
|
||||||
public decimal ServiceRateQuantity { get; set; }
|
|
||||||
public decimal NoChargeQuantity { get; set; }
|
|
||||||
public long? ServiceBankId { get; set; }
|
|
||||||
public long? TaxCodeSaleId { get; set; }
|
|
||||||
public decimal BasePrice { get; set; }//Rate price per unit at time of entry
|
|
||||||
public decimal Price { get; set; }//contract adjusted price or a copy of BasePrice if no contract
|
|
||||||
public decimal ManualDiscountPct { get; set; }// (V7 "Discount") ad-hoc / % off of the contractprice (which is always set regardless if contract or not) entered manually
|
|
||||||
|
|
||||||
"WorkOrderItemLaborBanked": "Banked",
|
|
||||||
"WorkOrderItemLaborRateCharge": "Rate Charge",
|
|
||||||
"WorkOrderItemLaborList": "Labors",
|
|
||||||
"WorkOrderItemLaborNoChargeQuantity": "No Charge Quantity",
|
|
||||||
"WorkOrderItemLaborServiceDetails": "Service Details",
|
|
||||||
"WorkOrderItemLaborServiceRateID": "Service Rate",
|
|
||||||
"WorkOrderItemLaborServiceRateQuantity": "Service Rate Quantity",
|
|
||||||
"WorkOrderItemLaborServiceStartDate": "Service Start Date Time",
|
|
||||||
"WorkOrderItemLaborServiceStopDate": "Service Stop Date Time",
|
|
||||||
"WorkOrderItemLaborTaxCodeID": "Tax Code",
|
|
||||||
"WorkOrderItemLaborTaxRateSaleID": "Sales tax",
|
|
||||||
"WorkOrderItemLaborUIBankWarning": "Are you sure you want to Bank this record?\r\n(Once this record is banked it will be locked and can no longer be edited)",
|
|
||||||
"WorkOrderItemLaborUIReBankWarning": "This item is already banked",
|
|
||||||
"WorkOrderItemLaborUserID": "User",
|
|
||||||
WorkOrderItemLaborManualDiscountPct
|
|
||||||
WorkOrderItemLaborBasePrice
|
|
||||||
WorkOrderItemLaborPrice
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
"CREATE TABLE aworkorderitemlabor (id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY, workorderitemid BIGINT NOT NULL REFERENCES aworkorderitem (id), "
|
|
||||||
+ "userid BIGINT REFERENCES auser, servicestartdate TIMESTAMP, servicestopdate TIMESTAMP, servicerateid BIGINT REFERENCES aservicerate, servicedetails text, "
|
|
||||||
+ "serviceratequantity DECIMAL(19,5) NOT NULL default 0, nochargequantity DECIMAL(19,5) NOT NULL default 0, servicebankid BIGINT REFERENCES aservicebank, "
|
|
||||||
+ "taxcodesaleid BIGINT REFERENCES ataxcode, baseprice DECIMAL(38,18) NOT NULL default 0, price DECIMAL(38,18) NOT NULL default 0, "
|
|
||||||
+ "manualdiscountpct DECIMAL(8,5) NOT NULL default 0 "
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user