Nhảy tới nội dung

Model Khác

Brands (Thương hiệu)

Model Brands nằm trong plugin sicommerce cung cấp các method thao tác với table thương hiệu

Model Brands kế thừa từ SkillDo\Model\Model nên bạn có thể sử dụng các method của model cho Brands như first, fetch, get, gets...

Insert

Các trường data khi insert dữ liệu

ColumnTypeDefaultDescription
idint0Nếu id là 0 method thực hiện add nếu có id method thực hiện update
namestringTên thương hiệu, bắt buộc có giá trị nếu thêm mới
excerptstringMô tả thương hiệu
seo_titlestringMeta title
seo_descriptionstringMeta title
seo_keywordsstringMeta keywords
imagestringHình ảnh đại diện
languagearrayDữ liệu ngôn ngữ
$brand = [
'title' => 'Brand',
'excerpt' => 'Nội dung tóm tắt',
'image' => 'brand/banner.png',
'language' => [
'en' => [
'title' => 'This is post name',
'excerpt' => 'excerpt post',
],
]
];

Brands::insert($brand);

Suppliers (Nhà sản xuất)

Model Suppliers nằm trong plugin sicommerce cung cấp các method thao tác với table nhà sản xuất

Model Suppliers kế thừa từ SkillDo\Model\Model nên bạn có thể sử dụng các method của model cho Suppliers như first, fetch, get, gets...

Insert

Các trường data khi insert dữ liệu

ColumnTypeDefaultDescription
idint0Nếu id là 0 method thực hiện add nếu có id method thực hiện update
namestringTên nhà sản xuất, bắt buộc có giá trị nếu thêm mới
firstnamestringHọ và chữ đệm người đại diện
lastnamestringTên người đại diện
emailstringemail liên hệ người đại diện
phonestringSố điện thoại người đại diện
addressstringĐịa chỉ người đại diện
excerptstringMô tả
seo_titlestringMeta title
seo_descriptionstringMeta title
seo_keywordsstringMeta keywords
imagestringHình ảnh đại diện
languagearrayDữ liệu ngôn ngữ
$supplier = [
'title' => 'Tiki training',
'firstname' => 'Nguyễn Tung',
'lastname' => 'Hoành',
'phone' => '0123456789',
'email' => 'tunghoanh@gmail.com',
'address' => '213/14 D2 Binh Thanh',
'image' => 'nsx/banner.png',
];

Suppliers::insert($supplier);

Currencies (Tiền tệ)

Model Currencies nằm trong plugin sicommerce cung cấp các method thao tác với table tiền tệ

Model Currencies kế thừa từ SkillDo\Model\Model nên bạn có thể sử dụng các method của model cho Currencies như first, fetch, get, gets...

Insert

Các trường data khi insert dữ liệu

ColumnTypeDefaultDescription
idint0Nếu id là 0 method thực hiện add nếu có id method thực hiện update
currencystringKey Loại tiền tệ
positionstringVị trí đơn vị (trước hoặc sau giá tiền)
ratefloatTỉ giá quy đổi so với giá tiền mặc định
rateFixedfloatTỉ giá làm tròn
decimalsintSố lượng chữ số thập phân
symbolstringKý hiệu tiền tệ
isDefaultint0
$supplier = [
'currency' => 'vnd',
'position' => 'right',
'rate' => 0.0001,
'rateFixed' => 0,
'decimals' => 2,
'symbol' => 'đ',
'isDefault' => 1,
];

Currencies::insert($supplier);