|
|
|
|
@ -89,7 +89,7 @@ class _CostDetailFormScreenState extends State<CostDetailFormScreen> with Ticker
|
|
|
|
|
initialValue: requestDetailProvider.workOrderCostModel?.labourCost?.toString(),
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle,
|
|
|
|
|
textInputType: TextInputType.number,
|
|
|
|
|
textInputType:const TextInputType.numberWithOptions(decimal: true),
|
|
|
|
|
showShadow: false,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
requestDetailProvider.workOrderCostModel?.labourCost = num.parse(value);
|
|
|
|
|
@ -103,7 +103,7 @@ class _CostDetailFormScreenState extends State<CostDetailFormScreen> with Ticker
|
|
|
|
|
initialValue: requestDetailProvider.workOrderCostModel?.travelCost?.toString(),
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle,
|
|
|
|
|
textInputType: TextInputType.number,
|
|
|
|
|
textInputType: const TextInputType.numberWithOptions(decimal: true),
|
|
|
|
|
showShadow: false,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
requestDetailProvider.workOrderCostModel?.travelCost = num.parse(value);
|
|
|
|
|
@ -117,7 +117,7 @@ class _CostDetailFormScreenState extends State<CostDetailFormScreen> with Ticker
|
|
|
|
|
initialValue: requestDetailProvider.workOrderCostModel?.qAmount?.toString(),
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle,
|
|
|
|
|
textInputType: TextInputType.number,
|
|
|
|
|
textInputType: const TextInputType.numberWithOptions(decimal: true),
|
|
|
|
|
showShadow: false,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
requestDetailProvider.workOrderCostModel?.qAmount = num.parse(value);
|
|
|
|
|
@ -131,7 +131,7 @@ class _CostDetailFormScreenState extends State<CostDetailFormScreen> with Ticker
|
|
|
|
|
initialValue: requestDetailProvider.workOrderCostModel?.prNo,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle,
|
|
|
|
|
textInputType: TextInputType.text,
|
|
|
|
|
textInputType:const TextInputType.numberWithOptions(decimal: true),
|
|
|
|
|
showShadow: false,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
requestDetailProvider.workOrderCostModel?.prNo = value;
|
|
|
|
|
@ -145,7 +145,7 @@ class _CostDetailFormScreenState extends State<CostDetailFormScreen> with Ticker
|
|
|
|
|
initialValue: requestDetailProvider.workOrderCostModel?.poNo,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle,
|
|
|
|
|
textInputType: TextInputType.text,
|
|
|
|
|
textInputType:const TextInputType.numberWithOptions(decimal: true),
|
|
|
|
|
showShadow: false,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
requestDetailProvider.workOrderCostModel?.poNo = value;
|
|
|
|
|
|