view static method
This method is used to view all fields of one bill form or one basedata.
formId
The formId of the bill or basedata.
number
The bill's BillNo or the basedata's Number
@return Json data.
Implementation
static Future<Map<String, dynamic>> view(String formId, String number) {
return K3Client.getInstance().operate(
ViewParam.builder()
.formId(formId)
.number(number)
.build()
);
}