|
|
|
|
@ -161,7 +161,7 @@ class _CostDetailFormScreenState extends State<CostDetailFormScreen> with Ticker
|
|
|
|
|
initialValue: requestDetailProvider.workOrderCostModel?.mrNo,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle,
|
|
|
|
|
textInputType: TextInputType.text,
|
|
|
|
|
textInputType: const TextInputType.numberWithOptions(decimal: true),
|
|
|
|
|
showShadow: false,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
requestDetailProvider.workOrderCostModel?.mrNo = value;
|
|
|
|
|
@ -172,7 +172,7 @@ class _CostDetailFormScreenState extends State<CostDetailFormScreen> with Ticker
|
|
|
|
|
AppTextFormField(
|
|
|
|
|
labelText: "Exchange Cost",
|
|
|
|
|
backgroundColor: AppColor.neutral100,
|
|
|
|
|
initialValue: requestDetailProvider.workOrderCostModel?.exchangeCost!=null?requestDetailProvider.workOrderCostModel?.exchangeCost.toString():'',
|
|
|
|
|
initialValue: requestDetailProvider.workOrderCostModel?.exchangeCost != null ? requestDetailProvider.workOrderCostModel?.exchangeCost.toString() : '',
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle,
|
|
|
|
|
textInputType: const TextInputType.numberWithOptions(decimal: true),
|
|
|
|
|
|