Skip to main content

DocumentHeader

Struct DocumentHeader 

Source
pub struct DocumentHeader {
Show 18 fields pub document_id: String, pub document_type: DocumentType, pub company_code: String, pub fiscal_year: u16, pub fiscal_period: u8, pub document_date: NaiveDate, pub posting_date: Option<NaiveDate>, pub entry_date: NaiveDate, pub entry_timestamp: NaiveDateTime, pub status: DocumentStatus, pub created_by: String, pub changed_by: Option<String>, pub changed_at: Option<NaiveDateTime>, pub currency: String, pub reference: Option<String>, pub header_text: Option<String>, pub journal_entry_id: Option<String>, pub document_references: Vec<DocumentReference>,
}
Expand description

Common document header fields.

Fields§

§document_id: String

Unique document ID

§document_type: DocumentType

Document type

§company_code: String

Company code

§fiscal_year: u16

Fiscal year

§fiscal_period: u8

Fiscal period

§document_date: NaiveDate

Document date

§posting_date: Option<NaiveDate>

Posting date (if applicable)

§entry_date: NaiveDate

Entry date (when document was created)

§entry_timestamp: NaiveDateTime

Entry timestamp

§status: DocumentStatus

Document status

§created_by: String

Created by user

§changed_by: Option<String>

Last changed by user

§changed_at: Option<NaiveDateTime>

Last change timestamp

§currency: String

Currency

§reference: Option<String>

Reference number (external)

§header_text: Option<String>

Header text

§journal_entry_id: Option<String>

Related journal entry ID (if posted to GL)

§document_references: Vec<DocumentReference>

References to other documents

Implementations§

Source§

impl DocumentHeader

Source

pub fn new( document_id: impl Into<String>, document_type: DocumentType, company_code: impl Into<String>, fiscal_year: u16, fiscal_period: u8, document_date: NaiveDate, created_by: impl Into<String>, ) -> Self

Create a new document header.

Source

pub fn with_posting_date(self, date: NaiveDate) -> Self

Set posting date.

Source

pub fn with_currency(self, currency: impl Into<String>) -> Self

Set currency.

Source

pub fn with_reference(self, reference: impl Into<String>) -> Self

Set reference.

Source

pub fn with_header_text(self, text: impl Into<String>) -> Self

Set header text.

Source

pub fn add_reference(&mut self, reference: DocumentReference)

Add a document reference.

Source

pub fn update_status( &mut self, new_status: DocumentStatus, user: impl Into<String>, )

Update status and record change.

Source

pub fn generate_id( doc_type: DocumentType, company_code: &str, sequence: u64, ) -> String

Generate a deterministic document ID.

Trait Implementations§

Source§

impl Clone for DocumentHeader

Source§

fn clone(&self) -> DocumentHeader

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DocumentHeader

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for DocumentHeader

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for DocumentHeader

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,