创建操作 -> 对账单状态 -> 待提交(3, "待提交"),
void opCreate(AccountingUnifiedSupplier statementOfAccount);
|
提交操作 -> 对账单状态 -> 未确认(0, "未确认"),已提交
void opSubmit(AccountingUnifiedSupplier statementOfAccount);
|
取消操作 -> 对账单状态 -> 已取消(-1, "已取消"),
void opCancel(AccountingUnifiedSupplier statementOfAccount);
|
重新对账 -> 对账单状态 -> 已取消(-1, "已取消"),
void opAgain(AccountingUnifiedSupplier statementOfAccount);
|
确认操作 -> 对账单状态 -> 已确认(1, "已确认"),
void opConfirm(AccountingUnifiedSupplier statementOfAccount);
|
申诉操作 -> 对账单状态 -> 已拒绝(2, "已拒绝"),
void opAppeal(AccountingUnifiedSupplier statementOfAccount);
|
|